rent_computer_log.go 484 B

12345678910111213141516
  1. package rentComputer
  2. type RentComputerLog struct {
  3. Id uint `json:"id"`
  4. UpdateTime string `json:"update_time"` // 更新时间
  5. CreateTime string `json:"create_time"` // 创建时间
  6. PcNum string `json:"pc_num"` //电脑编号
  7. ShopId uint `json:"shop_id"` //供应商ID
  8. SetMealId uint `json:"set_meal_id"` //套餐名id
  9. Log string `json:"log"` //备注
  10. }
  11. func (RentComputerLog) TableName() string {
  12. return "rent_computer_log"
  13. }