You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
421 B

  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 会员余额日志模型
  6. */
  7. class MoneyLog Extends Model
  8. {
  9. // 表名
  10. protected $name = 'user_money_log';
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'int';
  13. // 定义时间戳字段名
  14. protected $createTime = 'createtime';
  15. protected $updateTime = '';
  16. // 追加属性
  17. protected $append = [
  18. ];
  19. }