| 12345678910 |
- package common
- type CustomParamSelectRequest struct {
- // <ext>core:true</ext> 【自定义字段id】自定义字段id
- Id *int64 `json:"id,omitempty"`
- // <ext>core:true</ext> 【自定义字段名称】自定义字段名称
- Name string `json:"name,omitempty"`
- Department *DepartmentRequest `json:"department,omitempty"`
- }
|