From a9e6963dd98e68a74ab9b30e167eaa50a327b4dc Mon Sep 17 00:00:00 2001 From: shy Date: Sat, 31 May 2025 12:53:57 +0800 Subject: [PATCH] add some --- src/production/design.go | 2 +- src/production/issue.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/production/design.go b/src/production/design.go index 42153ca..3b39424 100644 --- a/src/production/design.go +++ b/src/production/design.go @@ -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) { diff --git a/src/production/issue.go b/src/production/issue.go index a0f0135..6e8acdb 100644 --- a/src/production/issue.go +++ b/src/production/issue.go @@ -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"`