rent_computer_shop.go 480 B

123456789101112131415
  1. package rentComputer
  2. type RentComputerShop 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. }
  10. func (RentComputerShop) TableName() string {
  11. return "rent_computer_shop"
  12. }