// +---------------------------------------------------------------------- namespace app\model\Tenant; use think\Model; /** * 租户模型 */ class Tenant extends Model { // 数据库表名 protected $name = 'mete_tenant'; // 字段类型转换 protected $type = [ 'id' => 'integer', 'tenant_code' => 'string', 'tenant_name' => 'string', 'contact_person' => 'string', 'contact_phone' => 'string', 'contact_email' => 'string', 'address' => 'string', 'worktime' => 'string', 'seoTitle' => 'string', 'seoKeywords' => 'string', 'seoDescription' => 'string', 'status' => 'integer', 'create_time' => 'datetime', 'update_time' => 'datetime', 'delete_time' => 'datetime', 'remark' => 'string', ]; }