- package rentComputer
- type RentComputerShop struct {
- Id uint `json:"id"`
- UpdateTime string `json:"update_time"` // 更新时间
- CreateTime string `json:"create_time"` // 创建时间
- Name string `json:"name"` //供应商名
- PayMethod int `json:"pay_method"` //结算方式 0:先付后用 1:先用后付
- Description string `json:"description"` //描述说明
- }
- func (RentComputerShop) TableName() string {
- return "rent_computer_shop"
- }
|