Files
huangjingfen/pro_v3.5.1/app/model/system/PrintDocument.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

23 lines
335 B
PHP

<?php
namespace app\model\system;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
class PrintDocument extends BaseModel
{
use ModelTrait;
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'print_document';
}