contract.go 269 B

1234567891011121314
  1. package model
  2. import xtime "go-common/library/time"
  3. // UserContract represents user contract record.
  4. type UserContract struct {
  5. ID int32
  6. Mid int64
  7. ContractId string
  8. OrderNo string
  9. IsDeleted int8
  10. Ctime xtime.Time
  11. Mtime xtime.Time
  12. }