CompanyCustomFieldResponse.go 713 B

12345678910111213141516171819
  1. package common
  2. type CompanyCustomFieldResponse struct {
  3. // 【参数名称】参数名称
  4. Name string `json:"name,omitempty"`
  5. // 【参数key】参数key
  6. Key string `json:"key,omitempty"`
  7. // <ext>format:string</ext> 【自定义字段对应的配置Id】自定义字段对应的配置Id
  8. CustomParamId *int64 `json:"customParamId,omitempty"`
  9. // 【单位自定义字段的参数值】单位自定义字段的参数值
  10. Value []string `json:"value,omitempty"`
  11. // 【超链接名称】超链接名称
  12. UrlName string `json:"urlName,omitempty"`
  13. // 【文件名称】文件名称
  14. FileName string `json:"fileName,omitempty"`
  15. // 【文件类型】文件类型
  16. FileType string `json:"fileType,omitempty"`
  17. }