| 12345678910111213141516171819 |
- package common
- type CompanyCustomFieldResponse struct {
- // 【参数名称】参数名称
- Name string `json:"name,omitempty"`
- // 【参数key】参数key
- Key string `json:"key,omitempty"`
- // <ext>format:string</ext> 【自定义字段对应的配置Id】自定义字段对应的配置Id
- CustomParamId *int64 `json:"customParamId,omitempty"`
- // 【单位自定义字段的参数值】单位自定义字段的参数值
- Value []string `json:"value,omitempty"`
- // 【超链接名称】超链接名称
- UrlName string `json:"urlName,omitempty"`
- // 【文件名称】文件名称
- FileName string `json:"fileName,omitempty"`
- // 【文件类型】文件类型
- FileType string `json:"fileType,omitempty"`
- }
|