...
|
...
|
@@ -4,15 +4,15 @@ import "errors" |
|
|
|
|
|
//NoticeModule 消息模块
|
|
|
type NoticeModule struct {
|
|
|
ModuleCode string `json:"Code"`
|
|
|
Name string `json:"name"`
|
|
|
ModuleCode string `json:"moduleCode"`
|
|
|
ModuleName string `json:"moduleName"`
|
|
|
}
|
|
|
|
|
|
//NoticeModuleAction 业务环节
|
|
|
type NoticeModuleAction struct {
|
|
|
ModuleCode string `json:"moduleCode"`
|
|
|
ActionCode string `json:"actionCode"`
|
|
|
Name string `json:"name"`
|
|
|
ActionName string `json:"actionName"`
|
|
|
}
|
|
|
|
|
|
// 编排消息需要的变量
|
...
|
...
|
@@ -130,18 +130,18 @@ const ( |
|
|
|
|
|
//noticeModuleList 模块列表
|
|
|
var noticeModuleList = []NoticeModule{
|
|
|
{ModuleCode: Module01, Name: "天联共创"},
|
|
|
{ModuleCode: Module01, ModuleName: "天联共创"},
|
|
|
}
|
|
|
|
|
|
//noticeModuleActionList 业务环节列表
|
|
|
var noticeModuleActionList = []NoticeModuleAction{
|
|
|
{ModuleCode: Module00, ActionCode: Action00_01, Name: "系统消息"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_01, Name: "共创申请通过"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_02, Name: "共创申请拒绝"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_03, Name: "共创确认"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_04, Name: "分红预算消息"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_05, Name: "账期结算消息"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_06, Name: "支付消息"},
|
|
|
{ModuleCode: Module00, ActionCode: Action00_01, ActionName: "系统消息"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_01, ActionName: "共创申请通过"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_02, ActionName: "共创申请拒绝"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_03, ActionName: "共创确认"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_04, ActionName: "分红预算消息"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_05, ActionName: "账期结算消息"},
|
|
|
{ModuleCode: Module01, ActionCode: Action01_06, ActionName: "支付消息"},
|
|
|
}
|
|
|
|
|
|
//noticeSettingParamList 业务变量列表
|
...
|
...
|
|