| | |
| | | package test |
| | | |
| | | import ( |
| | | "github.com/flipped-aurora/gin-vue-admin/server/global" |
| | | "srm/global" |
| | | ) |
| | | |
| | | // Supplier 结构体 |
| | |
| | | AccountName string `json:"accountName" form:"accountName" gorm:"column:account_name;comment:户名;size:255;"` |
| | | Account string `json:"account" form:"account" gorm:"column:account;comment:账号;size:255;"` |
| | | Bank string `json:"bank" form:"bank" gorm:"column:bank;comment:开户行;size:255;"` |
| | | File string `json:"file" form:"file" gorm:"column:file;comment:文件;"` |
| | | FileId *int `json:"fileId" form:"fileId" gorm:"column:file_id;comment:附件id;size:11;"` |
| | | Status int `json:"status" form:"status" gorm:"column:status;comment:状态;size:11;"` |
| | | } |
| | | |