跟踪备注
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\model\tcm;
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
|
||||
/**
|
||||
* 诊单跟踪备注模型
|
||||
* 表 zyt_tracking_note:按天一条,多次追加更新;只存文字。
|
||||
*/
|
||||
class TrackingNote extends BaseModel
|
||||
{
|
||||
protected $name = 'tracking_note';
|
||||
|
||||
protected $autoWriteTimestamp = true;
|
||||
protected $createTime = 'create_time';
|
||||
protected $updateTime = 'update_time';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
protected $dateFormat = false;
|
||||
}
|
||||
Reference in New Issue
Block a user