This commit is contained in:
IT 老营长 @云轩领航-创始人 2025-05-31 12:53:57 +08:00
parent 93201d7992
commit a9e6963dd9
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ type Design struct {
role string `data:"leader,worker"`
fields string `data:"updated_at,title,design_content,status,price,score,link,begin_time,end_time,process_time,finish_time,issue_uid,plan_uid,story_uid,user_uid"`
create string `name:"create issue_uid*:select title* design_content* price*=1000 begin_time:select@date end_time:select@date" role:"worker"`
modify string `name:"modify title* design_content* price* begin_time*:select@date end_time*:select@date" role:"worker"`
modify string `name:"modify title* design_content* price* link" role:"worker"`
}
func (s Design) Create(m *ice.Message, arg ...string) {

View File

@ -12,7 +12,7 @@ type Issue struct {
order string `data:"2"`
fields string `data:"updated_at,title,issue_content,issue_type,level,status,price,score,link,design_count,task_count,begin_time,end_time,process_time,finish_time,plan_uid,story_uid,user_uid"`
create string `name:"create plan_uid*:select title* issue_content* price=1000 begin_time:select@date end_time:select@date" role:"worker"`
modify string `name:"modify title* issue_content* price* begin_time:select@date end_time:select@date" role:"worker"`
modify string `name:"modify title* issue_content* price* link" role:"worker"`
designCreate string `name:"designCreate title* design_content* price=1000 begin_time:select@date end_time:select@date" role:"worker"`
taskCreate string `name:"taskCreate title* content* space path begin_time:select@date end_time:select@date" role:"worker"`
bindPlan string `name:"bindPlan plan_uid*:select"`