fix
wangpengfei
2023-08-17 2f0aa60ce2e10be53d9c865a6177bf731e182203
fix

fix the business_scope field type
1个文件已修改
2 ■■■ 已修改文件
model/business.go 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
model/business.go
@@ -12,6 +12,6 @@
        EnterpriseNature    EnterpriseNature
        EnterpriseScaleId   int `json:"enterprise_scale_id" gorm:"column:enterprise_scale_id;type:int(11);comment:企业规模"`
        EnterpriseScale     EnterpriseScale
        BusinessScope       string `json:"business_scope" gorm:"column:business_scope;type:varchar(255);comment:经营范围"`
        BusinessScope       string `json:"business_scope" gorm:"column:business_scope;type:text;comment:经营范围"`
    }
)