| | |
| | | Business struct { |
| | | Representative string `json:"representative" gorm:"column:representative;type:varchar(255);comment:法人代表"` |
| | | RegistrationTime *CustomTime `json:"registration_time" gorm:"column:registration_time;type:datetime;default:1970-01-01 08:00:00;comment:注册时间"` |
| | | RegisteredCapitalId int `json:"registered_capital_id" gorm:"column:registered_capital_id;type:int(11);comment:注册资金"` |
| | | RegisteredCapitalId int `json:"registered_capital_id" gorm:"column:registered_capital_id;type:int(11);default:1;comment:注册资金"` |
| | | RegisteredCapital RegisteredCapital |
| | | IndustryId int `json:"industry_id" gorm:"column:industry_id;type:int(11);comment:所属行业"` |
| | | IndustryId int `json:"industry_id" gorm:"column:industry_id;type:int(11);default:1;comment:所属行业"` |
| | | Industry Industry |
| | | EnterpriseNatureId int `json:"enterprise_nature_id" gorm:"column:enterprise_nature_id;type:int(11);comment:企业性质"` |
| | | EnterpriseNatureId int `json:"enterprise_nature_id" gorm:"column:enterprise_nature_id;type:int(11);default:1;comment:企业性质"` |
| | | EnterpriseNature EnterpriseNature |
| | | EnterpriseScaleId int `json:"enterprise_scale_id" gorm:"column:enterprise_scale_id;type:int(11);comment:企业规模"` |
| | | EnterpriseScaleId int `json:"enterprise_scale_id" gorm:"column:enterprise_scale_id;type:int(11);default:1;comment:企业规模"` |
| | | EnterpriseScale EnterpriseScale |
| | | BusinessScope string `json:"business_scope" gorm:"column:business_scope;type:text;comment:经营范围"` |
| | | } |