作者 庄敏学

增加参数默认配置

# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
... ...
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="Go" enabled="true" />
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/allied-creation-basic.iml" filepath="$PROJECT_DIR$/.idea/allied-creation-basic.iml" />
</modules>
</component>
</project>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
... ...
{"D:\\workspaceGo\\src\\allied-creation-basic\\pkg\\port\\beego":1631502497675932200}
\ No newline at end of file
{"/Users/zhuangmx/work/codes/allied-creation-basic/pkg/port/beego":1653986741097199045}
\ No newline at end of file
... ...
... ... @@ -72,6 +72,20 @@ var defaultsysSettingList = []SystemSetting{
SettingName: "用户初始化密码",
SettingCode: "XT001",
Description: "用于用户初始化设置初始化密码",
}, {
ControlLevel: "模块级",
ValueType: "字符",
Value: "",
SettingName: "生产报表类型角色配置",
SettingCode: "MK001",
Description: "生产报表类型角色配置,多个角色;隔开",
}, {
ControlLevel: "模块级",
ValueType: "字符",
Value: "",
SettingName: "销售报表类型角色配置",
SettingCode: "MK002",
Description: "销售报表类型角色配置,多个角色;隔开",
},
}
... ...