re_supplier_preview.go 444 B

123456789101112
  1. package vo
  2. type ReSupplierPreview struct {
  3. SupplierId int64 `json:"supplierId"`
  4. HeadUrl string `json:"headUrl"`
  5. SupplierName string `json:"supplierName"` // 服务商名称
  6. SupplierType int64 `json:"supplierType"` // 服务商类型,1为个人PR,2为机构
  7. CompanyName string `json:"companyName"` // 公司名称
  8. Name string `json:"name"` // 个人姓名
  9. Existence bool `json:"existence"` // 已在库
  10. }