- package rentComputer
- type RentComputerLog struct {
- Id uint `json:"id"`
- UpdateTime string `json:"update_time"` // 更新时间
- CreateTime string `json:"create_time"` // 创建时间
- PcNum string `json:"pc_num"` //电脑编号
- ShopId uint `json:"shop_id"` //供应商ID
- SetMealId uint `json:"set_meal_id"` //套餐名id
- Log string `json:"log"` //备注
- }
- func (RentComputerLog) TableName() string {
- return "rent_computer_log"
- }
|