xo_kf/application/admin/model/JunkaStoreMoneyLog.php

44 lines
583 B
PHP

<?php
namespace app\admin\model;
use think\Model;
class JunkaStoreMoneyLog extends Model
{
// 表名
protected $name = 'junka_store_money_log';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'integer';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
];
public function store()
{
return $this->hasOne('junkaStore', 'id', 'store_id')->setEagerlyType(0);
}
}