rent_computer_shop.go 407 B

1234567891011
  1. package response
  2. type ComputerStatisticsReply1 struct {
  3. Id uint `json:"id"`
  4. UpdateTime string `json:"update_time"` // 更新时间
  5. CreateTime string `json:"create_time"` // 创建时间
  6. Name string `json:"name"` //供应商名
  7. PayMethod int `json:"pay_method"` //结算方式 0:先付后用 1:先用后付
  8. Description string `json:"description"` //描述说明
  9. }