CardAwards.php 351 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class CardAwards extends Model
  5. {
  6. // 表名
  7. protected $table = 'card_awards';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $updateTime = 'updatetime';
  12. // 追加属性
  13. protected $append = [
  14. ];
  15. }