123456789101112131415161718192021222324 |
- <?php
- namespace app\admin\model;
- use think\Model;
- class DataShare extends Model
- {
- protected $name = 'data_share';
- protected $pk = 'id';
- protected $autoWriteTimestamp = false;
- public static $status_启用 = 1;
- public static $status_禁用 = 0;
- public static $delete_正常 = 0;
- public static $delete_删除 = 1;
- public static $type_只读 = 2;
- public static $type_读写 = 1;
- }
|