diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Department.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Department.java index ab073d6..9294632 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Department.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Department.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 部门 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:43.971 + * @Date : 2018-10-22 14:50:44.054 * @Modify : **/ @Data @@ -29,35 +29,35 @@ public class Department extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="DEPARTMENT_CODE") - @ApiParam(value ="部门代码") + @ApiParam(name ="部门代码") private String departmentCode; @Column(name="RED_PARENT_NAME") - @ApiParam(value ="父节点名称") + @ApiParam(name ="父节点名称") private String redParentName; @Column(name="PARENT_ID") - @ApiParam(value ="父节点ID") + @ApiParam(name ="父节点ID") private String parentId; @Column(name="DEPARTMENT_STATUS") - @ApiParam(value ="部门状态(1.正常,2.禁用)") + @ApiParam(name ="部门状态(1.正常,2.禁用)" , example ="1") private Integer departmentStatus; @Column(name="RED_ORGANIZATION_NAME") - @ApiParam(value ="所属组织名称") + @ApiParam(name ="所属组织名称") private String redOrganizationName; @Column(name="ORGANIZATION_ID") - @ApiParam("所属组织") + @ApiParam(name ="所属组织") private String organizationId; @Column(name="DEPARTMENT_SORT") - @ApiParam(name = "排序") + @ApiParam(name ="排序" , example ="1") private Integer departmentSort; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Enterprise.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Enterprise.java index 7615bad..d8a8e6a 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Enterprise.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Enterprise.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 企业信息 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.030 + * @Date : 2018-10-22 14:50:44.107 * @Modify : **/ @Data @@ -29,55 +29,55 @@ public class Enterprise extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="ENTERPRISE_STATUS") - @ApiParam(value ="企业状态(1.正常,2.到期,3.试用)") + @ApiParam(name ="企业状态(1.正常,2.到期,3.试用)" , example ="1") private Integer enterpriseStatus; @Column(name="ENTERPRISE_EQUIPMENT_ID") - @ApiParam(value ="服务器设备ID") + @ApiParam(name ="服务器设备ID") private String enterpriseEquipmentId; @Column(name="ENTERPRISE_START_DATE_TIME") - @ApiParam(value ="企业开始使用时间") + @ApiParam(name ="企业开始使用时间") private String enterpriseStartDateTime; @Column(name="ENTERPRISE_END_DATE_TIME") - @ApiParam(value ="企业结束使用时间") + @ApiParam(name ="企业结束使用时间") private String enterpriseEndDateTime; @Column(name="ENTERPRISE_NUM_REG_USER") - @ApiParam(value ="用户注册数") + @ApiParam(name ="用户注册数" , example ="0") private Integer enterpriseNumRegUser; @Column(name="ENTERPRISE_NUM_SYN_USER") - @ApiParam(value ="用户同时在线") + @ApiParam(name ="用户同时在线" , example ="0") private Integer enterpriseNumSynUser; @Column(name="ENTERPRISE_NUM_FACTORY") - @ApiParam(value ="工厂数量") + @ApiParam(name ="工厂数量" , example ="0") private Integer enterpriseNumFactory; @Column(name="ENTERPRISE_NUM_WAREHOUSE") - @ApiParam(value ="仓库数量") + @ApiParam(name ="仓库数量" , example ="0") private Integer enterpriseNumWarehouse; @Column(name="ENTERPRISE_CONTACT_NAME") - @ApiParam(value ="企业联系人") + @ApiParam(name ="企业联系人") private String enterpriseContactName; @Column(name="ENTERPRISE_CONTACT_EMAIL") - @ApiParam(value ="企业邮箱") + @ApiParam(name ="企业邮箱") private String enterpriseContactEmail; @Column(name="ENTERPRISE_CONTACT_PHONE") - @ApiParam(value ="企业联系电话") + @ApiParam(name ="企业联系电话") private String enterpriseContactPhone; @Column(name="ENTERPRISE_ADDR") - @ApiParam(value ="企业公司地址") + @ApiParam(name ="企业公司地址") private String enterpriseAddr; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/EnterpriseConfig.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/EnterpriseConfig.java index 400d469..15468d8 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/EnterpriseConfig.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/EnterpriseConfig.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 企业配置信息 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.095 + * @Date : 2018-10-22 14:50:44.166 * @Modify : **/ @Data @@ -29,31 +29,31 @@ public class EnterpriseConfig extends BaseBean { @Column(name="ENTERPRISE_ID") - @ApiParam(value ="企业id") + @ApiParam(name ="企业id") private String enterpriseId; @Column(name="NAME") - @ApiParam(value ="配置名称") + @ApiParam(name ="配置名称") private String name; @Column(name="CONFIG_TYPE_ID") - @ApiParam(value ="配置类型") + @ApiParam(name ="配置类型" , example ="0") private Integer configTypeId; @Column(name="CONFIG_PARENT_ID") - @ApiParam(value ="配置父节点") + @ApiParam(name ="配置父节点") private String configParentId; @Column(name="CONFIG_KEY") - @ApiParam(value ="配置代码") + @ApiParam(name ="配置代码") private String configKey; @Column(name="CONFIG_VALUE") - @ApiParam(value ="配置值") + @ApiParam(name ="配置值") private String configValue; @Column(name="CONFIG_DESCRIPTION") - @ApiParam(value ="配置说明") + @ApiParam(name ="配置说明") private String configDescription; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogAction.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogAction.java index fcbe283..d3df9c0 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogAction.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogAction.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 操作日志表 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.175 + * @Date : 2018-10-22 14:50:44.217 * @Modify : **/ @Data @@ -29,35 +29,35 @@ public class LogAction extends BaseBean { @Column(name="ACTION_MODULE_NAME") - @ApiParam(value ="模块名称") + @ApiParam(name ="模块名称") private String actionModuleName; @Column(name="ACTION_TYPE_ID") - @ApiParam(value ="操作类型") + @ApiParam(name ="操作类型") private String actionTypeId; @Column(name="ACTION_OBJECT") - @ApiParam(value ="操作对象") + @ApiParam(name ="操作对象") private String actionObject; @Column(name="ACTION_FIRST_DATA") - @ApiParam(value ="操作前数据") + @ApiParam(name ="操作前数据") private String actionFirstData; @Column(name="ACTION_LAST_DATA") - @ApiParam(value ="操作后数据") + @ApiParam(name ="操作后数据") private String actionLastData; @Column(name="ACTION_IP") - @ApiParam(value ="服务器IP") + @ApiParam(name ="服务器IP") private String actionIp; @Column(name="ACTION_TERMINAL") - @ApiParam(value ="操作终端") + @ApiParam(name ="操作终端") private String actionTerminal; @Column(name="ACTION_USER_NAME") - @ApiParam(value ="操作人名称") + @ApiParam(name ="操作人名称") private String actionUserName; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogSystem.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogSystem.java index 570f0b7..617cde4 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogSystem.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogSystem.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 系统日志表 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.231 + * @Date : 2018-10-22 14:50:44.260 * @Modify : **/ @Data @@ -29,31 +29,31 @@ public class LogSystem extends BaseBean { @Column(name="LOG_MOULE_NAME") - @ApiParam(value ="服务名称") + @ApiParam(name ="服务名称") private String logMouleName; @Column(name="LOG_IP") - @ApiParam(value ="服务器IP") + @ApiParam(name ="服务器IP") private String logIp; @Column(name="LOG_CLASS") - @ApiParam(value ="触发路径") + @ApiParam(name ="触发路径") private String logClass; @Column(name="LOG_METHOD") - @ApiParam(value ="触发方法") + @ApiParam(name ="触发方法") private String logMethod; @Column(name="LOG_LEVEL") - @ApiParam(value ="日志级别(1.DEBUG,2.INFO,3.ERROR)") + @ApiParam(name ="日志级别(1.DEBUG,2.INFO,3.ERROR)" , example ="1") private Integer logLevel; @Column(name="LOG_MESSAGE") - @ApiParam(value ="日志信息") + @ApiParam(name ="日志信息") private String logMessage; @Column(name="LOG_USER_NAME") - @ApiParam(value ="操作人名称") + @ApiParam(name ="操作人名称") private String logUserName; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogUserLogin.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogUserLogin.java index 487eb3f..e1d4ecd 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogUserLogin.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogUserLogin.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 用户登录记录 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.290 + * @Date : 2018-10-22 14:50:44.309 * @Modify : **/ @Data @@ -29,31 +29,31 @@ public class LogUserLogin extends BaseBean { @Column(name="USER_ID") - @ApiParam(value ="用户ID") + @ApiParam(name ="用户ID") private String userId; @Column(name="LOG_LOGIN_NAME") - @ApiParam(value ="登录名称") + @ApiParam(name ="登录名称") private String logLoginName; @Column(name="LOG_LOGIN_STATUS") - @ApiParam(value ="登录状态(1.成功,2.失败,3锁定)") + @ApiParam(name ="登录状态(1.成功,2.失败,3锁定)" , example ="1") private Integer logLoginStatus; @Column(name="LOG_LOGIN_PLATFORM_ID") - @ApiParam(value ="登录平台ID") + @ApiParam(name ="登录平台ID" , example ="1") private Integer logLoginPlatformId; @Column(name="LOG_LOGIN_PLATFORM_NAME") - @ApiParam(value ="登录平台名称") + @ApiParam(name ="登录平台名称") private String logLoginPlatformName; @Column(name="LOG_LOGIN_HOST") - @ApiParam(value ="登录IP") + @ApiParam(name ="登录IP") private String logLoginHost; @Column(name="LOG_LOGIN_DATE_TIME") - @ApiParam(value ="登录时间") + @ApiParam(name ="登录时间") private String logLoginDateTime; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Organize.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Organize.java index 72b9e1d..4cb7327 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Organize.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Organize.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 组织 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.340 + * @Date : 2018-10-22 14:50:44.358 * @Modify : **/ @Data @@ -29,39 +29,39 @@ public class Organize extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="ORGANIZATION_CODE") - @ApiParam(value ="组织代码") + @ApiParam(name ="组织代码") private String organizationCode; @Column(name="ORGANIZATION_TYPE_ID") - @ApiParam(value ="组织类型ID(1.集团,2.公司,3.工厂)") + @ApiParam(name ="组织类型ID(1.集团,2.公司,3.工厂)" , example ="1") private Integer organizationTypeId; @Column(name="ORGANIZATION_TYPE_NAME") - @ApiParam(value ="组织类型名称") + @ApiParam(name ="组织类型名称") private String organizationTypeName; @Column(name="PARENT_ID") - @ApiParam(value ="父节点") + @ApiParam(name ="父节点") private String parentId; @Column(name="RED_PARENT_NAME") - @ApiParam(value ="父节点") + @ApiParam(name ="父节点") private String redParentName; @Column(name="ORGANIZATION_DESCRIPTION") - @ApiParam(value ="组织描述") + @ApiParam(name ="组织描述") private String organizationDescription; @Column(name="ORGANIZATION_SORT") - @ApiParam(value ="排序") + @ApiParam(name ="排序" , example ="1") private Integer organizationSort; @Column(name="ORGANIZATION_STATUS") - @ApiParam(value ="组织状态(1.正常,2.禁用)") + @ApiParam(name ="组织状态(1.正常,2.禁用)" , example ="1") private Integer organizationStatus; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Position.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Position.java index 958e22a..40ea45e 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Position.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Position.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 岗位 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.390 + * @Date : 2018-10-22 14:50:44.422 * @Modify : **/ @Data @@ -29,27 +29,27 @@ public class Position extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="POSITION_CODE") - @ApiParam(value ="岗位代码") + @ApiParam(name ="岗位代码") private String positionCode; @Column(name="PARENT_ID") - @ApiParam(value ="上级岗位") + @ApiParam(name ="上级岗位") private String parentId; @Column(name="RED_PARENT_NAME") - @ApiParam(value ="上级岗位名称") + @ApiParam(name ="上级岗位名称") private String redParentName; @Column(name="POSITION_STATUS") - @ApiParam(value ="状态(1.正常,2.禁用)") + @ApiParam(name ="状态(1.正常,2.禁用)" , example ="1") private Integer positionStatus; @Column(name="POSITION_DESCRIPTION") - @ApiParam(value ="描述") + @ApiParam(name ="描述") private String positionDescription; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefRoleMenu.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefRoleMenu.java index 4d79e22..82098fc 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefRoleMenu.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefRoleMenu.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 关系-角色菜单 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.462 + * @Date : 2018-10-22 14:50:44.497 * @Modify : **/ @Data @@ -29,19 +29,19 @@ public class RefRoleMenu extends BaseBean { @Column(name="MENU_ID") - @ApiParam(value ="菜单ID") + @ApiParam(name ="菜单ID") private String menuId; @Column(name="RED_MENU_NAME") - @ApiParam(value ="菜单名称") + @ApiParam(name ="菜单名称") private String redMenuName; @Column(name="ROLE_ID") - @ApiParam(value ="角色ID") + @ApiParam(name ="角色ID") private String roleId; @Column(name="RED_ROLE_NAME") - @ApiParam(value ="角色名称") + @ApiParam(name ="角色名称") private String redRoleName; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserDepartment.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserDepartment.java index caccd94..af43453 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserDepartment.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserDepartment.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 关系-用户部门 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.560 + * @Date : 2018-10-22 14:50:44.622 * @Modify : **/ @Data @@ -29,15 +29,15 @@ public class RefUserDepartment extends BaseBean { @Column(name="USER_ID") - @ApiParam(value ="用户ID") + @ApiParam(name ="用户ID") private String userId; @Column(name="DEPARTMENT_ID") - @ApiParam(value ="部门ID") + @ApiParam(name ="部门ID") private String departmentId; @Column(name="RED_DEPARTMENT_NAME") - @ApiParam(value ="部门名称") + @ApiParam(name ="部门名称") private String redDepartmentName; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserPosition.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserPosition.java index e676d62..791ec6b 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserPosition.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserPosition.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 关系-用户岗位 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.660 + * @Date : 2018-10-22 14:50:44.704 * @Modify : **/ @Data @@ -29,19 +29,19 @@ public class RefUserPosition extends BaseBean { @Column(name="ORGANIZE_ID") - @ApiParam(value ="组织ID") + @ApiParam(name ="组织ID") private String organizeId; @Column(name="USER_ID") - @ApiParam(value ="用户ID") + @ApiParam(name ="用户ID") private String userId; @Column(name="POSITION_ID") - @ApiParam(value ="岗位ID") + @ApiParam(name ="岗位ID") private String positionId; @Column(name="RED_POSITION_NAME") - @ApiParam(value ="岗位名称") + @ApiParam(name ="岗位名称") private String redPositionName; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserRole.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserRole.java index e738bfb..efa4e76 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserRole.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserRole.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 关系-用户角色 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.755 + * @Date : 2018-10-22 14:50:44.790 * @Modify : **/ @Data @@ -29,15 +29,15 @@ public class RefUserRole extends BaseBean { @Column(name="USER_ID") - @ApiParam(value ="用户ID") + @ApiParam(name ="用户ID") private String userId; @Column(name="ROLE_ID") - @ApiParam(value ="角色ID") + @ApiParam(name ="角色ID") private String roleId; @Column(name="RED_ROLE_ID") - @ApiParam(value ="角色名称") + @ApiParam(name ="角色名称") private String redRoleId; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysConfig.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysConfig.java index 13600e8..23fc21f 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysConfig.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysConfig.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 系统配置 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:44.906 + * @Date : 2018-10-22 14:50:44.889 * @Modify : **/ @Data @@ -29,27 +29,27 @@ public class SysConfig extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="CONFIG_TYPE_ID") - @ApiParam(value ="配置类型ID(1.系统配置...)") + @ApiParam(name ="配置类型ID(1.系统配置...)" , example ="1") private Integer configTypeId; @Column(name="CONFIG_TYPE_NAME") - @ApiParam(value ="配置类型名称") + @ApiParam(name ="配置类型名称") private String configTypeName; @Column(name="CONFIG_CODE") - @ApiParam(value ="配置代码") + @ApiParam(name ="配置代码") private String configCode; @Column(name="CONFIG_VALUE") - @ApiParam(value ="配置值") + @ApiParam(name ="配置值") private String configValue; @Column(name="CONFIG_DESCRIPTION") - @ApiParam(value ="配置描述") + @ApiParam(name ="配置描述") private String configDescription; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysDictionary.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysDictionary.java index 71b790e..488dac9 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysDictionary.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysDictionary.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 系统字典 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:45.010 + * @Date : 2018-10-22 14:50:44.944 * @Modify : **/ @Data @@ -29,31 +29,31 @@ public class SysDictionary extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="DICTIONART_CODE") - @ApiParam(value ="字典代码") + @ApiParam(name ="字典代码") private String dictionartCode; @Column(name="PARENT_ID") - @ApiParam(value ="父节点") + @ApiParam(name ="父节点") private String parentId; @Column(name="RED_PARENT_NAME") - @ApiParam(value ="父级节点名称") + @ApiParam(name ="父级节点名称") private String redParentName; @Column(name="DICTIONARY_VALUE") - @ApiParam(value ="字典值") + @ApiParam(name ="字典值") private String dictionaryValue; @Column(name="DICTIONARY_SORT") - @ApiParam(value ="排序") + @ApiParam(name ="排序" , example ="1") private Integer dictionarySort; @Column(name="DICTIONARY_DESCRIPTION") - @ApiParam(value ="描述") + @ApiParam(name ="描述") private String dictionaryDescription; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysFile.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysFile.java index c825d89..7c52207 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysFile.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysFile.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 文件 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:45.132 + * @Date : 2018-10-22 14:50:44.996 * @Modify : **/ @Data @@ -29,35 +29,35 @@ public class SysFile extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="USER_ID") - @ApiParam(value ="用户ID") + @ApiParam(name ="用户ID") private String userId; @Column(name="FILE_PATH") - @ApiParam(value ="文件路径") + @ApiParam(name ="文件路径") private String filePath; @Column(name="FILE_ORIGINAL_NAME") - @ApiParam(value ="原始文件名称") + @ApiParam(name ="原始文件名称") private String fileOriginalName; @Column(name="FILE_TYPE_ID") - @ApiParam(value ="文件类型ID(字典)") + @ApiParam(name ="文件类型ID(字典)") private String fileTypeId; @Column(name="FILE_TYPE_NAME") - @ApiParam(value ="文件类型名称") + @ApiParam(name ="文件类型名称") private String fileTypeName; @Column(name="FILE_SIZE") - @ApiParam(value ="文件大小(KB)") - private String fileSize; + @ApiParam(name ="文件大小(KB)") + private Integer fileSize; @Column(name="DOWNLOADS") - @ApiParam(value ="下载次数") + @ApiParam(name ="下载次数" , example ="0") private Integer downloads; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMenu.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMenu.java index 582f7d4..e28c886 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMenu.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMenu.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 系统功能 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:45.196 + * @Date : 2018-10-22 14:50:45.067 * @Modify : **/ @Data @@ -29,43 +29,43 @@ public class SysMenu extends BaseBean { @Column(name="NAME") - @ApiParam(value ="功能名称") + @ApiParam(name ="功能名称") private String name; @Column(name="MENU_TYPE_ID") - @ApiParam(value ="功能类型(1.模块,2.菜单,3.按钮)") + @ApiParam(name ="功能类型(1.模块,2.菜单,3.按钮)" , example ="1") private Integer menuTypeId; @Column(name="RED_MENU_TYPE_NAME") - @ApiParam(value ="功能类型名称") + @ApiParam(name ="功能类型名称") private String redMenuTypeName; @Column(name="PARENT_ID") - @ApiParam(value ="父级功能ID") + @ApiParam(name ="父级功能ID") private String parentId; @Column(name="RED_PARENT_NAME") - @ApiParam(value ="父级功能名称") + @ApiParam(name ="父级功能名称") private String redParentName; @Column(name="MENU_CLASS_PATH") - @ApiParam(value ="资源class path") + @ApiParam(name ="资源class path") private String menuClassPath; @Column(name="MENU_URL") - @ApiParam(value ="资源 url") + @ApiParam(name ="资源 url") private String menuUrl; @Column(name="MENU_CSS") - @ApiParam(value ="资源css") + @ApiParam(name ="资源css") private String menuCss; @Column(name="MENU_ICON") - @ApiParam(value ="资源icon") + @ApiParam(name ="资源icon") private String menuIcon; @Column(name="MENU_STATUS") - @ApiParam(value ="功能状态(1.正常,2.禁用)") + @ApiParam(name ="功能状态(1.正常,2.禁用)" , example ="1") private Integer menuStatus; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMessage.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMessage.java index 0e162a9..d326126 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMessage.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMessage.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 系统消息 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:45.272 + * @Date : 2018-10-22 14:50:45.125 * @Modify : **/ @Data @@ -29,31 +29,31 @@ public class SysMessage extends BaseBean { @Column(name="MESSAGE_TITLE") - @ApiParam(value ="消息标题") + @ApiParam(name ="消息标题") private String messageTitle; @Column(name="MESSAGE_TYPE_ID") - @ApiParam(value ="消息类型(1.通知,2.站内信)") + @ApiParam(name ="消息类型(1.通知,2.站内信)" , example ="1") private Integer messageTypeId; @Column(name="RED_MESSAGE_TYPE_NAME") - @ApiParam(value ="消息类型名称") + @ApiParam(name ="消息类型名称") private String redMessageTypeName; @Column(name="MESSAGE_SEND_ID") - @ApiParam(value ="发送者") + @ApiParam(name ="发送者") private String messageSendId; @Column(name="MESSAGE_ACCEPT_ID") - @ApiParam(value ="接受者") + @ApiParam(name ="接受者") private String messageAcceptId; @Column(name="MESSAGE_CONTENT") - @ApiParam(value ="消息内容") + @ApiParam(name ="消息内容") private String messageContent; @Column(name="MESSAGE_STATUS") - @ApiParam(value ="消息状态(1.启用,2.禁用)") + @ApiParam(name ="消息状态(1.启用,2.禁用)" , example ="1") private Integer messageStatus; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysTimeExpression.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysTimeExpression.java index 3e171ae..36583dd 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysTimeExpression.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysTimeExpression.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 系统时间表达式 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:45.438 + * @Date : 2018-10-22 14:50:45.259 * @Modify : **/ @Data @@ -29,15 +29,15 @@ public class SysTimeExpression extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="TIME_EXPRESSION") - @ApiParam(value ="表达式内容") + @ApiParam(name ="表达式内容") private String timeExpression; @Column(name="TIME_DESCRIPTION") - @ApiParam(value ="表达式描述") + @ApiParam(name ="表达式描述") private String timeDescription; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysUserInfo.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysUserInfo.java index 0c3e9fb..5dba262 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysUserInfo.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysUserInfo.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 用户详细 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:45.594 + * @Date : 2018-10-22 14:50:45.352 * @Modify : **/ @Data @@ -29,31 +29,31 @@ public class SysUserInfo extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="USER_ID") - @ApiParam(value ="用户ID") + @ApiParam(name ="用户ID") private String userId; @Column(name="ORGANIZE_ID") - @ApiParam(value ="组织ID") + @ApiParam(name ="组织ID") private String organizeId; @Column(name="USER_IMAGE_ID") - @ApiParam(value ="用户图像") + @ApiParam(name ="用户图像") private String userImageId; @Column(name="USER_SEX") - @ApiParam(value ="性别(1.男,2.女)") + @ApiParam(name ="性别(1.男,2.女)" , example ="1") private Integer userSex; @Column(name="USER_AGE") - @ApiParam(value ="年龄") + @ApiParam(name ="年龄" , example ="1") private Integer userAge; @Column(name="USER_LOGIN_LASTAAA_DATE_TIME") - @ApiParam(value ="用户最后登录时间") + @ApiParam(name ="用户最后登录时间") private String userLoginLastaaaDateTime; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimed.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimed.java index 9ce199e..1ebfde5 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimed.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimed.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 定时任务 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:45.673 + * @Date : 2018-10-22 14:50:45.399 * @Modify : **/ @Data @@ -29,63 +29,63 @@ public class TaskTimed extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="TIME_ID") - @ApiParam(value ="时间表达式ID") + @ApiParam(name ="时间表达式ID") private String timeId; @Column(name="RED_TIME_NAME") - @ApiParam(value ="时间表达式名称") + @ApiParam(name ="时间表达式名称") private String redTimeName; @Column(name="RED_TIME_EXPRESSION") - @ApiParam(value ="时间表达式") + @ApiParam(name ="时间表达式") private String redTimeExpression; @Column(name="TASK_START_DATE_TIME") - @ApiParam(value ="任务开始时间") + @ApiParam(name ="任务开始时间") private String taskStartDateTime; @Column(name="TASK_END_DATE_TIME") - @ApiParam(value ="任务结束时间") + @ApiParam(name ="任务结束时间") private String taskEndDateTime; @Column(name="TASK_NUM_SUM") - @ApiParam(value ="执行总次数") + @ApiParam(name ="执行总次数" , example ="0") private Integer taskNumSum; @Column(name="TASK_NUM_RUN") - @ApiParam(value ="执行次数") + @ApiParam(name ="执行次数" , example ="0") private Integer taskNumRun; @Column(name="TASK_TYPE_ID") - @ApiParam(value ="任务类型(1.定时任务)") + @ApiParam(name ="任务类型(1.定时任务)" , example ="1") private Integer taskTypeId; @Column(name="RESOURCE_CODE") - @ApiParam(value ="资源代码") + @ApiParam(name ="资源代码") private String resourceCode; @Column(name="TASK_CLASS_PATH") - @ApiParam(value ="任务 class path") + @ApiParam(name ="任务 class path") private String taskClassPath; @Column(name="TASK_URL") - @ApiParam(value ="任务 url") + @ApiParam(name ="任务 url") private String taskUrl; @Column(name="TASK_DESCRIPTION") - @ApiParam(value ="任务描述") + @ApiParam(name ="任务描述") private String taskDescription; @Column(name="TASK_STATUS") - @ApiParam(value ="任务状态(1.正常,2.禁用)") + @ApiParam(name ="任务状态(1.正常,2.禁用)" , example ="1") private Integer taskStatus; @Column(name="LAST_RUN_DATE_TIME") - @ApiParam(value ="最后运行时间") + @ApiParam(name ="最后运行时间") private String lastRunDateTime; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimedRecording.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimedRecording.java index 3789948..cbef4d4 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimedRecording.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimedRecording.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 定时任务执行记录 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:46.010 + * @Date : 2018-10-22 14:50:45.447 * @Modify : **/ @Data @@ -29,39 +29,39 @@ public class TaskTimedRecording extends BaseBean { @Column(name="NAME") - @ApiParam(value ="任务名称") + @ApiParam(name ="任务名称") private String name; @Column(name="TIMED_TASK_ID") - @ApiParam(value ="任务编号") + @ApiParam(name ="任务编号") private String timedTaskId; @Column(name="RED_TIME_ID") - @ApiParam(value ="时间表达式ID") + @ApiParam(name ="时间表达式ID") private String redTimeId; @Column(name="RED_TIME_EXPRESSION") - @ApiParam(value ="时间表达式") + @ApiParam(name ="时间表达式") private String redTimeExpression; @Column(name="TASK_START_DATE_TIME") - @ApiParam(value ="任务开始时间") + @ApiParam(name ="任务开始时间") private String taskStartDateTime; @Column(name="TASK_END_DATE_TIME") - @ApiParam(value ="任务结束时间") + @ApiParam(name ="任务结束时间") private String taskEndDateTime; @Column(name="TASK_STATUS") - @ApiParam(value ="任务完成情况") + @ApiParam(name ="任务完成情况") private String taskStatus; @Column(name="TASK_LOG") - @ApiParam(value ="任务日志") + @ApiParam(name ="任务日志") private String taskLog; @Column(name="TASK_LOG_ERROR") - @ApiParam(value ="任务异常日志") + @ApiParam(name ="任务异常日志") private String taskLogError; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Tool.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Tool.java index a5f01af..7287cd1 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Tool.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Tool.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 硬件设备表 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:46.137 + * @Date : 2018-10-22 14:50:45.483 * @Modify : **/ @Data @@ -29,43 +29,43 @@ public class Tool extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; @Column(name="TOOL_TYPE_ID") - @ApiParam(value ="类型ID") + @ApiParam(name ="类型ID") private String toolTypeId; @Column(name="RED_TOOL_TYPE_NAME") - @ApiParam(value ="类型名称") + @ApiParam(name ="类型名称") private String redToolTypeName; @Column(name="TOOL_STATUS") - @ApiParam(value ="设备状态(1.正常,2.禁用)") + @ApiParam(name ="设备状态(1.正常,2.禁用)" , example ="1") private Integer toolStatus; @Column(name="TOOL_HOST") - @ApiParam(value ="IP地址") + @ApiParam(name ="IP地址") private String toolHost; @Column(name="TOOL_PORT") - @ApiParam(value ="端口") + @ApiParam(name ="端口" , example ="80") private Integer toolPort; @Column(name="TOOL_CONN_TYPE") - @ApiParam(value ="连接方式(1.网口,2.串口,3.USB......)") + @ApiParam(name ="连接方式(1.网口,2.串口,3.USB......)" , example ="1") private Integer toolConnType; @Column(name="TOOL_DATA_TYPE") - @ApiParam(value ="传输数据类型(1.字符串,2.二进制数据流....)") + @ApiParam(name ="传输数据类型(1.字符串,2.二进制数据流....)" , example ="1") private Integer toolDataType; @Column(name="TOOL_OPERATING") - @ApiParam(value ="操作内容") + @ApiParam(name ="操作内容") private String toolOperating; @Column(name="TOOL_DESCRIPTION") - @ApiParam(value ="描述") + @ApiParam(name ="描述") private String toolDescription; } diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/ToolType.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/ToolType.java index 3744626..0eaa46f 100644 --- a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/ToolType.java +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/ToolType.java @@ -16,7 +16,7 @@ import java.text.DecimalFormat; * @Description : 设备类型 * @Reference : * @Author : wei.peng - * @Date : 2018-10-22 12:52:46.217 + * @Date : 2018-10-22 14:50:45.523 * @Modify : **/ @Data @@ -29,7 +29,7 @@ public class ToolType extends BaseBean { @Column(name="NAME") - @ApiParam(value ="名称") + @ApiParam(name ="名称") private String name; }