Variable.php 358 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\admin\model\sms;
  3. use think\Model;
  4. /**
  5. * Variable
  6. * @controllerUrl 'smsVariable'
  7. */
  8. class Variable extends Model
  9. {
  10. // 表名
  11. protected $name = 'sms_variable';
  12. // 自动写入时间戳字段
  13. protected $autoWriteTimestamp = 'int';
  14. protected $createTime = 'createtime';
  15. protected $updateTime = 'updatetime';
  16. }