TakeLog.php 537 字节
<?php

namespace addons\groupon\model\store;

use think\Model;
use traits\model\SoftDelete;
use addons\groupon\model\Store;
use addons\groupon\model\User;
use addons\groupon\model\OrderItem;
use addons\groupon\exception\Exception;

class TakeLog extends Model
{


    // 表名
    protected $name = 'groupon_store_take_log';
    
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';

    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';



    

}