You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
786 B

package gys
type GysCompanyCreditcode struct {
Id uint `gorm:"column:id;primary_key" json:"id"`
CompanyId uint `gorm:"column:company_id" json:"companyId"`
Name string `gorm:"column:name" json:"name"`
Creditcode string `gorm:"column:creditcode" json:"creditcode"`
Econkind string `gorm:"column:econkind" json:"econkind"`
Status string `gorm:"column:status" json:"status"`
Address string `gorm:"column:address" json:"address"`
Tel string `gorm:"column:tel" json:"tel"`
Bank string `gorm:"column:bank" json:"bank"`
Bankaccount string `gorm:"column:bankaccount" json:"bankaccount"`
Orderid string `gorm:"column:orderid" json:"orderid"`
}
func (*GysCompanyCreditcode) TableName() string {
return "gys_company_creditcode"
}