CustomParam.go 332 B

12345678910111213
  1. package common
  2. type CustomParam struct {
  3. // 【主键id】主键id
  4. Id string `json:"id,omitempty"`
  5. // 【参数名称】参数名称
  6. Name string `json:"name"`
  7. // 【参数类型】参数类型
  8. Type_ string `json:"type"`
  9. // 【参数应用范围】参数应用范围
  10. ApplyRange []CustomParamSubjectBo `json:"applyRange"`
  11. }