| 123456789101112131415161718192021 | <?php/** * ChannelModel.php  UTF-8 * CPS平台表 * * @date    : 2018/7/27 14:09 * * @license 这不是一个自由软件,未经授权不许任何使用和传播。 * @author  : chenbingling <cbl@huosdk.com> * @version : HUOSDK 8.0 */namespace huo\model\game;use huo\model\common\CommonModel;class ChannelModel extends CommonModel {    protected $name = 'channel';    // 开启自动写入时间戳字段    protected $autoWriteTimestamp = true;}
 |