www.maiwd.cn // +---------------------------------------------------------------------- /** * Class IndustryCategory * Desc 行业分类模型 * Create on 2024/3/19 11:22 * Create by wangyafang */ namespace app\api\model\wdsxh\member; use think\Model; class IndustryCategory extends Model { // 表名 protected $name = 'wdsxh_member_industry_category'; // 自动写入时间戳字段 protected $autoWriteTimestamp = false; // 定义时间戳字段名 protected $createTime = false; protected $updateTime = false; protected $deleteTime = false; public function getIconAttr($value) { return wdsxh_full_url($value); } }