Ai_GirlFriend/xunifriend_RaeeC/application/admin/model/intimacy/Day.php
2026-01-31 19:15:41 +08:00

50 lines
778 B
PHP

<?php
namespace app\admin\model\intimacy;
use think\Model;
class Day extends Model
{
// 表名
protected $name = 'intimacy_day';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'integer';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
'type_text'
];
public function getTypeList()
{
return ['1' => __('Type 1'), '2' => __('Type 2')];
}
public function getTypeTextAttr($value, $data)
{
$value = $value ?: ($data['type'] ?? '');
$list = $this->getTypeList();
return $list[$value] ?? '';
}
}