CustomParamSelectRequest.go 329 B

12345678910
  1. package common
  2. type CustomParamSelectRequest struct {
  3. // <ext>core:true</ext> 【自定义字段id】自定义字段id
  4. Id *int64 `json:"id,omitempty"`
  5. // <ext>core:true</ext> 【自定义字段名称】自定义字段名称
  6. Name string `json:"name,omitempty"`
  7. Department *DepartmentRequest `json:"department,omitempty"`
  8. }