address.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package dto
  2. import (
  3. "cold-delivery/app/admin/model"
  4. "cold-delivery/common/dto"
  5. common "cold-delivery/common/model"
  6. )
  7. type AddressGetPageReq struct {
  8. dto.Pagination `search:"-"`
  9. Name string `form:"name" search:"-"` // 地址名称
  10. AddressType string `form:"addressType" search:"type:exact;column:address_type;table:address"` //地址类型:sender-发货人 consignee-收货人
  11. DataType string `form:"dataType" search:"-"` // 我的my 全部all
  12. AddressOrder
  13. }
  14. type AddressOrder struct {
  15. CreatedAtOrder string `search:"type:order;column:created_at;table:address" form:"createdAtOrder" default:"desc"`
  16. }
  17. func (m *AddressGetPageReq) GetNeedSearch() interface{} {
  18. return *m
  19. }
  20. type AddressInsertReq struct {
  21. Id int `json:"id" comment:"编码" swaggerignore:"true"` // 编码
  22. Name string `json:"name" vd:"len($)>0;msg:'姓名不能为空'"` // 收货人名称
  23. Phone string `json:"phone" vd:"len($)>0;msg:'手机号不能为空'"` // 联系电话
  24. Address string `json:"address" vd:"len($)>0;msg:'详细地址不能为空'"` // 详细地址
  25. IsDefault bool `json:"isDefault"` // 默认地址
  26. AddressType string `json:"addressType"` // 地址类型:sender-发货人 consignee-收货人
  27. common.ControlBy `swaggerignore:"true"`
  28. common.DeptBy `swaggerignore:"true"`
  29. }
  30. func (s *AddressInsertReq) Generate(m *model.Address) {
  31. if s.Id != 0 {
  32. m.Id = s.Id
  33. }
  34. m.Name = s.Name
  35. m.Phone = s.Phone
  36. m.Address = s.Address
  37. m.IsDefault = s.IsDefault
  38. m.AddressType = s.AddressType
  39. if s.ControlBy.UpdateBy != 0 {
  40. m.UpdateBy = s.UpdateBy
  41. }
  42. if s.ControlBy.CreateBy != 0 {
  43. m.CreateBy = s.CreateBy
  44. }
  45. if s.DeptBy.DeptId != 0 {
  46. m.DeptId = s.DeptId
  47. }
  48. }
  49. func (s *AddressInsertReq) GetId() interface{} {
  50. return s.Id
  51. }
  52. type AddressUpdateReq struct {
  53. Id int `json:"id" comment:"编码"` // 编码
  54. Name string `json:"name" vd:"len($)>0;msg:'姓名不能为空'"` // 收货人名称
  55. Phone string `json:"phone" vd:"len($)>0;msg:'手机号不能为空'"` // 联系电话
  56. Address string `json:"address" vd:"len($)>0;msg:'详细地址不能为空'"` // 详细地址
  57. IsDefault bool `json:"isDefault"` // 默认地址
  58. ProvinceId string `json:"provinceId"` // 省Id
  59. ProvinceName string `json:"provinceName"` // 省中文名
  60. CityId string `json:"cityId"` // 市Id
  61. CityName string `json:"cityName"` // 市中文名
  62. RegionId string `json:"regionId"` // 区Id
  63. RegionName string `json:"regionName"` // 区中文名
  64. AddressType string `json:"addressType"` // 地址类型:sender-发货人 consignee-收货人
  65. common.ControlBy `swaggerignore:"true"`
  66. }
  67. func (s *AddressUpdateReq) Generate(m *model.Address) {
  68. if s.Id != 0 {
  69. m.Id = s.Id
  70. }
  71. m.Name = s.Name
  72. m.Phone = s.Phone
  73. m.Address = s.Address
  74. m.IsDefault = s.IsDefault
  75. m.AddressType = s.AddressType
  76. if s.ControlBy.UpdateBy != 0 {
  77. m.UpdateBy = s.UpdateBy
  78. }
  79. if s.ControlBy.CreateBy != 0 {
  80. m.CreateBy = s.CreateBy
  81. }
  82. }
  83. func (s *AddressUpdateReq) GetId() interface{} {
  84. return s.Id
  85. }
  86. type AddressGetReq struct {
  87. Id int `uri:"id"`
  88. }
  89. func (s *AddressGetReq) GetId() interface{} {
  90. return s.Id
  91. }
  92. type AddressDeleteReq struct {
  93. Id int `json:"id"`
  94. common.ControlBy `swaggerignore:"true"`
  95. }
  96. func (s *AddressDeleteReq) GetId() interface{} {
  97. return s.Id
  98. }