task_script.go 282 B

1234567
  1. package youngee_talent_model
  2. type AddTaskScriptRequest struct {
  3. TaskId string `orm:"task_id" json:"task_id"` // 任务id
  4. Title string `orm:"title" json:"title"` // 脚本标题
  5. Content string `orm:"content" json:"content"` // 脚本内容
  6. }