xo_kf/application/common/model/JunkaCardLog.php

29 lines
481 B
PHP

<?php
namespace app\common\model;
use think\Model;
/**
* 购卡记录
*/
class JunkaCardLog extends Model
{
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
// 追加属性
protected $append = [
];
public function junkacard()
{
return $this->hasMany('junkaCard', 'card_log_id', 'id');
}
}