// +---------------------------------------------------------------------- // +---------------------------------------------------------------------- // | 会员金钱变动模型 // +---------------------------------------------------------------------- namespace app\member\model; use think\Model; class AmountLog extends Model { // 表名 protected $name = 'member_amount_log'; // 开启自动写入时间戳字段 protected $autoWriteTimestamp = true; protected $updateTime = false; }