ReqVo.go 281 B

123456789101112131415
  1. package domain
  2. import "strconv"
  3. type SkuSort struct {
  4. Id int64 `xorm:"id" json:"id"`
  5. Sort int64 `xorm:"sort" json:"sort"`
  6. }
  7. func (s SkuSort) String() string {
  8. return "SkuSort{" +
  9. "id=" + strconv.FormatInt(s.Id, 10) +
  10. ", sort=" + strconv.FormatInt(s.Sort, 10) +
  11. "}"
  12. }