劲创营---任务项目
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.
 
 
 

20 lignes
492 B

  1. package md
  2. type DirectorReq struct {
  3. P string `json:"p"`
  4. Size string `json:"size"`
  5. TaskType string `json:"task_type"`
  6. ApplyType string `json:"apply_type"`
  7. SettleType string `json:"settle_type"`
  8. StartTime string `json:"start_time"`
  9. EndTime string `json:"end_time"`
  10. }
  11. type DirectorDelReq struct {
  12. Ids []string `json:"ids"`
  13. Remark string `json:"remark"`
  14. }
  15. type DirectorTaskSaveReq struct {
  16. TaskIds []string `json:"task_ids"`
  17. Id string `json:"id"`
  18. }