WithdrawLog.php 309 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class WithdrawLog extends Model
  5. {
  6. protected $name = 'shop_withdraw_log';
  7. // 开启自动写入时间戳字段
  8. protected $autoWriteTimestamp = 'int';
  9. // 定义时间戳字段名
  10. protected $createTime = 'createtime';
  11. }