supplier_search_param.go 672 B

12345678910111213141516171819202122232425
  1. package vo
  2. type SupplierSearchParam struct {
  3. FieldName string `json:"field_name"`
  4. EnterpriseId string `json:"enterprise_id"`
  5. SubAccountId int64 `json:"sub_account_id"`
  6. }
  7. type SupplierInviteParam struct {
  8. SupplierIds []int64 `json:"supplier_ids"`
  9. EnterpriseId string `json:"enterprise_id"`
  10. SubAccountId int64 `json:"sub_account_id"`
  11. }
  12. type SupplierSearchInPoolParam struct {
  13. EnterpriseId string `json:"enterprise_id"`
  14. Page int `json:"page"`
  15. PageSize int `json:"page_size"`
  16. }
  17. type SupplierConfirmingParam struct {
  18. EnterpriseId string `json:"enterprise_id"`
  19. Page int `json:"page"`
  20. PageSize int `json:"page_size"`
  21. }