Ratio.php 567 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Model;
  4. use traits\model\SoftDelete;
  5. class Ratio extends Model
  6. {
  7. use SoftDelete;
  8. // 表名
  9. protected $name = 'qingdongams_staff_ratio';
  10. // 自动写入时间戳字段
  11. protected $autoWriteTimestamp = 'int';
  12. // 定义时间戳字段名
  13. protected $createTime = 'createtime';
  14. protected $updateTime = 'updatetime';
  15. protected $deleteTime = 'deletetime';
  16. // 追加属性
  17. protected $append = [
  18. ];
  19. }