Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- package md
-
- type DirectorReq struct {
- P string `json:"p"`
- Size string `json:"size"`
- TaskType string `json:"task_type"`
- ApplyType string `json:"apply_type"`
- SettleType string `json:"settle_type"`
- StartTime string `json:"start_time"`
- EndTime string `json:"end_time"`
- }
- type DirectorDelReq struct {
- Ids []string `json:"ids"`
- Remark string `json:"remark"`
- }
- type DirectorTaskSaveReq struct {
- TaskIds []string `json:"task_ids"`
- Id string `json:"id"`
- }
|