智慧食堂
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

md_company.go 668 B

il y a 1 an
il y a 1 an
il y a 1 an
1234567891011121314151617
  1. package md
  2. type CompanyAddReq struct {
  3. Name string `json:"name" binding:"required" label:"名称"`
  4. Memo string `json:"memo" label:"备注"`
  5. LeadName string `json:"lead_name" label:"负责人姓名"`
  6. LeadPhone string `json:"lead_phone" label:"负责人手机号"`
  7. }
  8. type CompanyUpdateReq struct {
  9. Id int `json:"id" binding:"required" label:"公司id"`
  10. State int32 `json:"state" label:"状态"`
  11. Name string `json:"name" binding:"required" label:"名称"`
  12. Memo string `json:"memo" label:"备注"`
  13. LeadName string `json:"lead_name" label:"负责人姓名"`
  14. LeadPhone string `json:"lead_phone" label:"负责人手机号"`
  15. }