12345678910111213141516171819202122232425 |
- package vo
- type SupplierSearchParam struct {
- FieldName string `json:"field_name"`
- EnterpriseId string `json:"enterprise_id"`
- SubAccountId int64 `json:"sub_account_id"`
- }
- type SupplierInviteParam struct {
- SupplierIds []int64 `json:"supplier_ids"`
- EnterpriseId string `json:"enterprise_id"`
- SubAccountId int64 `json:"sub_account_id"`
- }
- type SupplierSearchInPoolParam struct {
- EnterpriseId string `json:"enterprise_id"`
- Page int `json:"page"`
- PageSize int `json:"page_size"`
- }
- type SupplierConfirmingParam struct {
- EnterpriseId string `json:"enterprise_id"`
- Page int `json:"page"`
- PageSize int `json:"page_size"`
- }
|