From 9cd186e66fb9290a0896ad08ba0446ab7cfa8b2a Mon Sep 17 00:00:00 2001 From: "wei.peng" Date: Mon, 22 Oct 2018 14:18:33 +0800 Subject: [PATCH] POJO Commit --- .../i3plus/pojo/platform/bean/Department.java | 63 +++++++++++++++ .../i3plus/pojo/platform/bean/Enterprise.java | 83 ++++++++++++++++++++ .../pojo/platform/bean/EnterpriseConfig.java | 59 ++++++++++++++ .../estsh/i3plus/pojo/platform/bean/LogAction.java | 63 +++++++++++++++ .../estsh/i3plus/pojo/platform/bean/LogSystem.java | 59 ++++++++++++++ .../i3plus/pojo/platform/bean/LogUserLogin.java | 59 ++++++++++++++ .../estsh/i3plus/pojo/platform/bean/Organize.java | 67 ++++++++++++++++ .../estsh/i3plus/pojo/platform/bean/Position.java | 55 +++++++++++++ .../i3plus/pojo/platform/bean/RefRoleMenu.java | 47 +++++++++++ .../pojo/platform/bean/RefUserDepartment.java | 43 ++++++++++ .../i3plus/pojo/platform/bean/RefUserPosition.java | 47 +++++++++++ .../i3plus/pojo/platform/bean/RefUserRole.java | 43 ++++++++++ .../estsh/i3plus/pojo/platform/bean/SysConfig.java | 55 +++++++++++++ .../i3plus/pojo/platform/bean/SysDictionary.java | 59 ++++++++++++++ .../estsh/i3plus/pojo/platform/bean/SysFile.java | 63 +++++++++++++++ .../estsh/i3plus/pojo/platform/bean/SysMenu.java | 71 +++++++++++++++++ .../i3plus/pojo/platform/bean/SysMessage.java | 59 ++++++++++++++ .../pojo/platform/bean/SysTimeExpression.java | 43 ++++++++++ .../i3plus/pojo/platform/bean/SysUserInfo.java | 59 ++++++++++++++ .../estsh/i3plus/pojo/platform/bean/TaskTimed.java | 91 ++++++++++++++++++++++ .../pojo/platform/bean/TaskTimedRecording.java | 67 ++++++++++++++++ .../cn/estsh/i3plus/pojo/platform/bean/Tool.java | 71 +++++++++++++++++ .../estsh/i3plus/pojo/platform/bean/ToolType.java | 35 +++++++++ .../platform/repository/DepartmentRepository.java | 14 ++++ .../repository/EnterpriseConfigRepository.java | 14 ++++ .../platform/repository/EnterpriseRepository.java | 14 ++++ .../platform/repository/LogActionRepository.java | 14 ++++ .../platform/repository/LogSystemRepository.java | 14 ++++ .../repository/LogUserLoginRepository.java | 14 ++++ .../platform/repository/OrganizeRepository.java | 14 ++++ .../platform/repository/PositionRepository.java | 14 ++++ .../platform/repository/RefRoleMenuRepository.java | 14 ++++ .../repository/RefUserDepartmentRepository.java | 14 ++++ .../repository/RefUserPositionRepository.java | 14 ++++ .../platform/repository/RefUserRoleRepository.java | 14 ++++ .../platform/repository/SysConfigRepository.java | 14 ++++ .../repository/SysDictionaryRepository.java | 14 ++++ .../platform/repository/SysFileRepository.java | 14 ++++ .../platform/repository/SysMenuRepository.java | 14 ++++ .../platform/repository/SysMessageRepository.java | 14 ++++ .../platform/repository/SysRoleRepository.java | 14 ++++ .../repository/SysTimeExpressionRepository.java | 14 ++++ .../platform/repository/SysUserInfoRepository.java | 14 ++++ .../repository/TaskTimedRecordingRepository.java | 14 ++++ .../platform/repository/TaskTimedRepository.java | 14 ++++ .../pojo/platform/repository/ToolRepository.java | 14 ++++ .../platform/repository/ToolTypeRepository.java | 14 ++++ 47 files changed, 1697 insertions(+) create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Department.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Enterprise.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/EnterpriseConfig.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogAction.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogSystem.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogUserLogin.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Organize.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Position.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefRoleMenu.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserDepartment.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserPosition.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserRole.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysConfig.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysDictionary.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysFile.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMenu.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMessage.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysTimeExpression.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysUserInfo.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimed.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimedRecording.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Tool.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/ToolType.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/DepartmentRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseConfigRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogActionRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogSystemRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogUserLoginRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/OrganizeRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/PositionRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefRoleMenuRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserDepartmentRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserPositionRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserRoleRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysConfigRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysDictionaryRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysFileRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMenuRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMessageRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysRoleRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysTimeExpressionRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysUserInfoRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRecordingRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolRepository.java create mode 100644 modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolTypeRepository.java 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 new file mode 100644 index 0000000..ab073d6 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Department.java @@ -0,0 +1,63 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 部门 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:43.971 + * @Modify : + **/ +@Data +@Entity +@Table(name="DEPARTMENT") +@DynamicInsert +@DynamicUpdate +@Api(value="部门",description = "部门") +public class Department extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="DEPARTMENT_CODE") + @ApiParam(value ="部门代码") + private String departmentCode; + + @Column(name="RED_PARENT_NAME") + @ApiParam(value ="父节点名称") + private String redParentName; + + @Column(name="PARENT_ID") + @ApiParam(value ="父节点ID") + private String parentId; + + @Column(name="DEPARTMENT_STATUS") + @ApiParam(value ="部门状态(1.正常,2.禁用)") + private Integer departmentStatus; + + @Column(name="RED_ORGANIZATION_NAME") + @ApiParam(value ="所属组织名称") + private String redOrganizationName; + + @Column(name="ORGANIZATION_ID") + @ApiParam("所属组织") + private String organizationId; + + @Column(name="DEPARTMENT_SORT") + @ApiParam(name = "排序") + 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 new file mode 100644 index 0000000..7615bad --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Enterprise.java @@ -0,0 +1,83 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 企业信息 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.030 + * @Modify : + **/ +@Data +@Entity +@Table(name="ENTERPRISE") +@DynamicInsert +@DynamicUpdate +@Api(value="企业信息",description = "企业信息") +public class Enterprise extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="ENTERPRISE_STATUS") + @ApiParam(value ="企业状态(1.正常,2.到期,3.试用)") + private Integer enterpriseStatus; + + @Column(name="ENTERPRISE_EQUIPMENT_ID") + @ApiParam(value ="服务器设备ID") + private String enterpriseEquipmentId; + + @Column(name="ENTERPRISE_START_DATE_TIME") + @ApiParam(value ="企业开始使用时间") + private String enterpriseStartDateTime; + + @Column(name="ENTERPRISE_END_DATE_TIME") + @ApiParam(value ="企业结束使用时间") + private String enterpriseEndDateTime; + + @Column(name="ENTERPRISE_NUM_REG_USER") + @ApiParam(value ="用户注册数") + private Integer enterpriseNumRegUser; + + @Column(name="ENTERPRISE_NUM_SYN_USER") + @ApiParam(value ="用户同时在线") + private Integer enterpriseNumSynUser; + + @Column(name="ENTERPRISE_NUM_FACTORY") + @ApiParam(value ="工厂数量") + private Integer enterpriseNumFactory; + + @Column(name="ENTERPRISE_NUM_WAREHOUSE") + @ApiParam(value ="仓库数量") + private Integer enterpriseNumWarehouse; + + @Column(name="ENTERPRISE_CONTACT_NAME") + @ApiParam(value ="企业联系人") + private String enterpriseContactName; + + @Column(name="ENTERPRISE_CONTACT_EMAIL") + @ApiParam(value ="企业邮箱") + private String enterpriseContactEmail; + + @Column(name="ENTERPRISE_CONTACT_PHONE") + @ApiParam(value ="企业联系电话") + private String enterpriseContactPhone; + + @Column(name="ENTERPRISE_ADDR") + @ApiParam(value ="企业公司地址") + 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 new file mode 100644 index 0000000..400d469 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/EnterpriseConfig.java @@ -0,0 +1,59 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 企业配置信息 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.095 + * @Modify : + **/ +@Data +@Entity +@Table(name="ENTERPRISE_CONFIG") +@DynamicInsert +@DynamicUpdate +@Api(value="企业配置信息",description = "企业配置信息") +public class EnterpriseConfig extends BaseBean { + + + @Column(name="ENTERPRISE_ID") + @ApiParam(value ="企业id") + private String enterpriseId; + + @Column(name="NAME") + @ApiParam(value ="配置名称") + private String name; + + @Column(name="CONFIG_TYPE_ID") + @ApiParam(value ="配置类型") + private Integer configTypeId; + + @Column(name="CONFIG_PARENT_ID") + @ApiParam(value ="配置父节点") + private String configParentId; + + @Column(name="CONFIG_KEY") + @ApiParam(value ="配置代码") + private String configKey; + + @Column(name="CONFIG_VALUE") + @ApiParam(value ="配置值") + private String configValue; + + @Column(name="CONFIG_DESCRIPTION") + @ApiParam(value ="配置说明") + 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 new file mode 100644 index 0000000..fcbe283 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogAction.java @@ -0,0 +1,63 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 操作日志表 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.175 + * @Modify : + **/ +@Data +@Entity +@Table(name="LOG_ACTION") +@DynamicInsert +@DynamicUpdate +@Api(value="操作日志表",description = "操作日志表") +public class LogAction extends BaseBean { + + + @Column(name="ACTION_MODULE_NAME") + @ApiParam(value ="模块名称") + private String actionModuleName; + + @Column(name="ACTION_TYPE_ID") + @ApiParam(value ="操作类型") + private String actionTypeId; + + @Column(name="ACTION_OBJECT") + @ApiParam(value ="操作对象") + private String actionObject; + + @Column(name="ACTION_FIRST_DATA") + @ApiParam(value ="操作前数据") + private String actionFirstData; + + @Column(name="ACTION_LAST_DATA") + @ApiParam(value ="操作后数据") + private String actionLastData; + + @Column(name="ACTION_IP") + @ApiParam(value ="服务器IP") + private String actionIp; + + @Column(name="ACTION_TERMINAL") + @ApiParam(value ="操作终端") + private String actionTerminal; + + @Column(name="ACTION_USER_NAME") + @ApiParam(value ="操作人名称") + 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 new file mode 100644 index 0000000..570f0b7 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogSystem.java @@ -0,0 +1,59 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 系统日志表 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.231 + * @Modify : + **/ +@Data +@Entity +@Table(name="LOG_SYSTEM") +@DynamicInsert +@DynamicUpdate +@Api(value="系统日志表",description = "系统日志表") +public class LogSystem extends BaseBean { + + + @Column(name="LOG_MOULE_NAME") + @ApiParam(value ="服务名称") + private String logMouleName; + + @Column(name="LOG_IP") + @ApiParam(value ="服务器IP") + private String logIp; + + @Column(name="LOG_CLASS") + @ApiParam(value ="触发路径") + private String logClass; + + @Column(name="LOG_METHOD") + @ApiParam(value ="触发方法") + private String logMethod; + + @Column(name="LOG_LEVEL") + @ApiParam(value ="日志级别(1.DEBUG,2.INFO,3.ERROR)") + private Integer logLevel; + + @Column(name="LOG_MESSAGE") + @ApiParam(value ="日志信息") + private String logMessage; + + @Column(name="LOG_USER_NAME") + @ApiParam(value ="操作人名称") + 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 new file mode 100644 index 0000000..487eb3f --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/LogUserLogin.java @@ -0,0 +1,59 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 用户登录记录 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.290 + * @Modify : + **/ +@Data +@Entity +@Table(name="LOG_USER_LOGIN") +@DynamicInsert +@DynamicUpdate +@Api(value="用户登录记录",description = "用户登录记录") +public class LogUserLogin extends BaseBean { + + + @Column(name="USER_ID") + @ApiParam(value ="用户ID") + private String userId; + + @Column(name="LOG_LOGIN_NAME") + @ApiParam(value ="登录名称") + private String logLoginName; + + @Column(name="LOG_LOGIN_STATUS") + @ApiParam(value ="登录状态(1.成功,2.失败,3锁定)") + private Integer logLoginStatus; + + @Column(name="LOG_LOGIN_PLATFORM_ID") + @ApiParam(value ="登录平台ID") + private Integer logLoginPlatformId; + + @Column(name="LOG_LOGIN_PLATFORM_NAME") + @ApiParam(value ="登录平台名称") + private String logLoginPlatformName; + + @Column(name="LOG_LOGIN_HOST") + @ApiParam(value ="登录IP") + private String logLoginHost; + + @Column(name="LOG_LOGIN_DATE_TIME") + @ApiParam(value ="登录时间") + 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 new file mode 100644 index 0000000..72b9e1d --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Organize.java @@ -0,0 +1,67 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 组织 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.340 + * @Modify : + **/ +@Data +@Entity +@Table(name="ORGANIZE") +@DynamicInsert +@DynamicUpdate +@Api(value="组织",description = "组织") +public class Organize extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="ORGANIZATION_CODE") + @ApiParam(value ="组织代码") + private String organizationCode; + + @Column(name="ORGANIZATION_TYPE_ID") + @ApiParam(value ="组织类型ID(1.集团,2.公司,3.工厂)") + private Integer organizationTypeId; + + @Column(name="ORGANIZATION_TYPE_NAME") + @ApiParam(value ="组织类型名称") + private String organizationTypeName; + + @Column(name="PARENT_ID") + @ApiParam(value ="父节点") + private String parentId; + + @Column(name="RED_PARENT_NAME") + @ApiParam(value ="父节点") + private String redParentName; + + @Column(name="ORGANIZATION_DESCRIPTION") + @ApiParam(value ="组织描述") + private String organizationDescription; + + @Column(name="ORGANIZATION_SORT") + @ApiParam(value ="排序") + private Integer organizationSort; + + @Column(name="ORGANIZATION_STATUS") + @ApiParam(value ="组织状态(1.正常,2.禁用)") + 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 new file mode 100644 index 0000000..958e22a --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Position.java @@ -0,0 +1,55 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 岗位 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.390 + * @Modify : + **/ +@Data +@Entity +@Table(name="POSITION") +@DynamicInsert +@DynamicUpdate +@Api(value="岗位",description = "岗位") +public class Position extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="POSITION_CODE") + @ApiParam(value ="岗位代码") + private String positionCode; + + @Column(name="PARENT_ID") + @ApiParam(value ="上级岗位") + private String parentId; + + @Column(name="RED_PARENT_NAME") + @ApiParam(value ="上级岗位名称") + private String redParentName; + + @Column(name="POSITION_STATUS") + @ApiParam(value ="状态(1.正常,2.禁用)") + private Integer positionStatus; + + @Column(name="POSITION_DESCRIPTION") + @ApiParam(value ="描述") + 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 new file mode 100644 index 0000000..4d79e22 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefRoleMenu.java @@ -0,0 +1,47 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 关系-角色菜单 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.462 + * @Modify : + **/ +@Data +@Entity +@Table(name="REF_ROLE_MENU") +@DynamicInsert +@DynamicUpdate +@Api(value="关系-角色菜单",description = "关系-角色菜单") +public class RefRoleMenu extends BaseBean { + + + @Column(name="MENU_ID") + @ApiParam(value ="菜单ID") + private String menuId; + + @Column(name="RED_MENU_NAME") + @ApiParam(value ="菜单名称") + private String redMenuName; + + @Column(name="ROLE_ID") + @ApiParam(value ="角色ID") + private String roleId; + + @Column(name="RED_ROLE_NAME") + @ApiParam(value ="角色名称") + 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 new file mode 100644 index 0000000..caccd94 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserDepartment.java @@ -0,0 +1,43 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 关系-用户部门 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.560 + * @Modify : + **/ +@Data +@Entity +@Table(name="REF_USER_DEPARTMENT") +@DynamicInsert +@DynamicUpdate +@Api(value="关系-用户部门",description = "关系-用户部门") +public class RefUserDepartment extends BaseBean { + + + @Column(name="USER_ID") + @ApiParam(value ="用户ID") + private String userId; + + @Column(name="DEPARTMENT_ID") + @ApiParam(value ="部门ID") + private String departmentId; + + @Column(name="RED_DEPARTMENT_NAME") + @ApiParam(value ="部门名称") + 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 new file mode 100644 index 0000000..e676d62 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserPosition.java @@ -0,0 +1,47 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 关系-用户岗位 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.660 + * @Modify : + **/ +@Data +@Entity +@Table(name="REF_USER_POSITION") +@DynamicInsert +@DynamicUpdate +@Api(value="关系-用户岗位",description = "关系-用户岗位") +public class RefUserPosition extends BaseBean { + + + @Column(name="ORGANIZE_ID") + @ApiParam(value ="组织ID") + private String organizeId; + + @Column(name="USER_ID") + @ApiParam(value ="用户ID") + private String userId; + + @Column(name="POSITION_ID") + @ApiParam(value ="岗位ID") + private String positionId; + + @Column(name="RED_POSITION_NAME") + @ApiParam(value ="岗位名称") + 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 new file mode 100644 index 0000000..e738bfb --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/RefUserRole.java @@ -0,0 +1,43 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 关系-用户角色 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.755 + * @Modify : + **/ +@Data +@Entity +@Table(name="REF_USER_ROLE") +@DynamicInsert +@DynamicUpdate +@Api(value="关系-用户角色",description = "关系-用户角色") +public class RefUserRole extends BaseBean { + + + @Column(name="USER_ID") + @ApiParam(value ="用户ID") + private String userId; + + @Column(name="ROLE_ID") + @ApiParam(value ="角色ID") + private String roleId; + + @Column(name="RED_ROLE_ID") + @ApiParam(value ="角色名称") + 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 new file mode 100644 index 0000000..13600e8 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysConfig.java @@ -0,0 +1,55 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 系统配置 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:44.906 + * @Modify : + **/ +@Data +@Entity +@Table(name="SYS_CONFIG") +@DynamicInsert +@DynamicUpdate +@Api(value="系统配置",description = "系统配置") +public class SysConfig extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="CONFIG_TYPE_ID") + @ApiParam(value ="配置类型ID(1.系统配置...)") + private Integer configTypeId; + + @Column(name="CONFIG_TYPE_NAME") + @ApiParam(value ="配置类型名称") + private String configTypeName; + + @Column(name="CONFIG_CODE") + @ApiParam(value ="配置代码") + private String configCode; + + @Column(name="CONFIG_VALUE") + @ApiParam(value ="配置值") + private String configValue; + + @Column(name="CONFIG_DESCRIPTION") + @ApiParam(value ="配置描述") + 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 new file mode 100644 index 0000000..71b790e --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysDictionary.java @@ -0,0 +1,59 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 系统字典 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:45.010 + * @Modify : + **/ +@Data +@Entity +@Table(name="SYS_DICTIONARY") +@DynamicInsert +@DynamicUpdate +@Api(value="系统字典",description = "系统字典") +public class SysDictionary extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="DICTIONART_CODE") + @ApiParam(value ="字典代码") + private String dictionartCode; + + @Column(name="PARENT_ID") + @ApiParam(value ="父节点") + private String parentId; + + @Column(name="RED_PARENT_NAME") + @ApiParam(value ="父级节点名称") + private String redParentName; + + @Column(name="DICTIONARY_VALUE") + @ApiParam(value ="字典值") + private String dictionaryValue; + + @Column(name="DICTIONARY_SORT") + @ApiParam(value ="排序") + private Integer dictionarySort; + + @Column(name="DICTIONARY_DESCRIPTION") + @ApiParam(value ="描述") + 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 new file mode 100644 index 0000000..c825d89 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysFile.java @@ -0,0 +1,63 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 文件 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:45.132 + * @Modify : + **/ +@Data +@Entity +@Table(name="SYS_FILE") +@DynamicInsert +@DynamicUpdate +@Api(value="文件",description = "文件") +public class SysFile extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="USER_ID") + @ApiParam(value ="用户ID") + private String userId; + + @Column(name="FILE_PATH") + @ApiParam(value ="文件路径") + private String filePath; + + @Column(name="FILE_ORIGINAL_NAME") + @ApiParam(value ="原始文件名称") + private String fileOriginalName; + + @Column(name="FILE_TYPE_ID") + @ApiParam(value ="文件类型ID(字典)") + private String fileTypeId; + + @Column(name="FILE_TYPE_NAME") + @ApiParam(value ="文件类型名称") + private String fileTypeName; + + @Column(name="FILE_SIZE") + @ApiParam(value ="文件大小(KB)") + private String fileSize; + + @Column(name="DOWNLOADS") + @ApiParam(value ="下载次数") + 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 new file mode 100644 index 0000000..582f7d4 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMenu.java @@ -0,0 +1,71 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 系统功能 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:45.196 + * @Modify : + **/ +@Data +@Entity +@Table(name="SYS_MENU") +@DynamicInsert +@DynamicUpdate +@Api(value="系统功能",description = "系统功能") +public class SysMenu extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="功能名称") + private String name; + + @Column(name="MENU_TYPE_ID") + @ApiParam(value ="功能类型(1.模块,2.菜单,3.按钮)") + private Integer menuTypeId; + + @Column(name="RED_MENU_TYPE_NAME") + @ApiParam(value ="功能类型名称") + private String redMenuTypeName; + + @Column(name="PARENT_ID") + @ApiParam(value ="父级功能ID") + private String parentId; + + @Column(name="RED_PARENT_NAME") + @ApiParam(value ="父级功能名称") + private String redParentName; + + @Column(name="MENU_CLASS_PATH") + @ApiParam(value ="资源class path") + private String menuClassPath; + + @Column(name="MENU_URL") + @ApiParam(value ="资源 url") + private String menuUrl; + + @Column(name="MENU_CSS") + @ApiParam(value ="资源css") + private String menuCss; + + @Column(name="MENU_ICON") + @ApiParam(value ="资源icon") + private String menuIcon; + + @Column(name="MENU_STATUS") + @ApiParam(value ="功能状态(1.正常,2.禁用)") + 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 new file mode 100644 index 0000000..0e162a9 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysMessage.java @@ -0,0 +1,59 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 系统消息 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:45.272 + * @Modify : + **/ +@Data +@Entity +@Table(name="SYS_MESSAGE") +@DynamicInsert +@DynamicUpdate +@Api(value="系统消息",description = "系统消息") +public class SysMessage extends BaseBean { + + + @Column(name="MESSAGE_TITLE") + @ApiParam(value ="消息标题") + private String messageTitle; + + @Column(name="MESSAGE_TYPE_ID") + @ApiParam(value ="消息类型(1.通知,2.站内信)") + private Integer messageTypeId; + + @Column(name="RED_MESSAGE_TYPE_NAME") + @ApiParam(value ="消息类型名称") + private String redMessageTypeName; + + @Column(name="MESSAGE_SEND_ID") + @ApiParam(value ="发送者") + private String messageSendId; + + @Column(name="MESSAGE_ACCEPT_ID") + @ApiParam(value ="接受者") + private String messageAcceptId; + + @Column(name="MESSAGE_CONTENT") + @ApiParam(value ="消息内容") + private String messageContent; + + @Column(name="MESSAGE_STATUS") + @ApiParam(value ="消息状态(1.启用,2.禁用)") + 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 new file mode 100644 index 0000000..3e171ae --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysTimeExpression.java @@ -0,0 +1,43 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 系统时间表达式 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:45.438 + * @Modify : + **/ +@Data +@Entity +@Table(name="SYS_TIME_EXPRESSION") +@DynamicInsert +@DynamicUpdate +@Api(value="系统时间表达式",description = "系统时间表达式") +public class SysTimeExpression extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="TIME_EXPRESSION") + @ApiParam(value ="表达式内容") + private String timeExpression; + + @Column(name="TIME_DESCRIPTION") + @ApiParam(value ="表达式描述") + 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 new file mode 100644 index 0000000..0c3e9fb --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/SysUserInfo.java @@ -0,0 +1,59 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 用户详细 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:45.594 + * @Modify : + **/ +@Data +@Entity +@Table(name="SYS_USER_INFO") +@DynamicInsert +@DynamicUpdate +@Api(value="用户详细",description = "用户详细") +public class SysUserInfo extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="USER_ID") + @ApiParam(value ="用户ID") + private String userId; + + @Column(name="ORGANIZE_ID") + @ApiParam(value ="组织ID") + private String organizeId; + + @Column(name="USER_IMAGE_ID") + @ApiParam(value ="用户图像") + private String userImageId; + + @Column(name="USER_SEX") + @ApiParam(value ="性别(1.男,2.女)") + private Integer userSex; + + @Column(name="USER_AGE") + @ApiParam(value ="年龄") + private Integer userAge; + + @Column(name="USER_LOGIN_LASTAAA_DATE_TIME") + @ApiParam(value ="用户最后登录时间") + 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 new file mode 100644 index 0000000..9ce199e --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimed.java @@ -0,0 +1,91 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 定时任务 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:45.673 + * @Modify : + **/ +@Data +@Entity +@Table(name="TASK_TIMED") +@DynamicInsert +@DynamicUpdate +@Api(value="定时任务",description = "定时任务") +public class TaskTimed extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="TIME_ID") + @ApiParam(value ="时间表达式ID") + private String timeId; + + @Column(name="RED_TIME_NAME") + @ApiParam(value ="时间表达式名称") + private String redTimeName; + + @Column(name="RED_TIME_EXPRESSION") + @ApiParam(value ="时间表达式") + private String redTimeExpression; + + @Column(name="TASK_START_DATE_TIME") + @ApiParam(value ="任务开始时间") + private String taskStartDateTime; + + @Column(name="TASK_END_DATE_TIME") + @ApiParam(value ="任务结束时间") + private String taskEndDateTime; + + @Column(name="TASK_NUM_SUM") + @ApiParam(value ="执行总次数") + private Integer taskNumSum; + + @Column(name="TASK_NUM_RUN") + @ApiParam(value ="执行次数") + private Integer taskNumRun; + + @Column(name="TASK_TYPE_ID") + @ApiParam(value ="任务类型(1.定时任务)") + private Integer taskTypeId; + + @Column(name="RESOURCE_CODE") + @ApiParam(value ="资源代码") + private String resourceCode; + + @Column(name="TASK_CLASS_PATH") + @ApiParam(value ="任务 class path") + private String taskClassPath; + + @Column(name="TASK_URL") + @ApiParam(value ="任务 url") + private String taskUrl; + + @Column(name="TASK_DESCRIPTION") + @ApiParam(value ="任务描述") + private String taskDescription; + + @Column(name="TASK_STATUS") + @ApiParam(value ="任务状态(1.正常,2.禁用)") + private Integer taskStatus; + + @Column(name="LAST_RUN_DATE_TIME") + @ApiParam(value ="最后运行时间") + 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 new file mode 100644 index 0000000..3789948 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/TaskTimedRecording.java @@ -0,0 +1,67 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 定时任务执行记录 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:46.010 + * @Modify : + **/ +@Data +@Entity +@Table(name="TASK_TIMED_RECORDING") +@DynamicInsert +@DynamicUpdate +@Api(value="定时任务执行记录",description = "定时任务执行记录") +public class TaskTimedRecording extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="任务名称") + private String name; + + @Column(name="TIMED_TASK_ID") + @ApiParam(value ="任务编号") + private String timedTaskId; + + @Column(name="RED_TIME_ID") + @ApiParam(value ="时间表达式ID") + private String redTimeId; + + @Column(name="RED_TIME_EXPRESSION") + @ApiParam(value ="时间表达式") + private String redTimeExpression; + + @Column(name="TASK_START_DATE_TIME") + @ApiParam(value ="任务开始时间") + private String taskStartDateTime; + + @Column(name="TASK_END_DATE_TIME") + @ApiParam(value ="任务结束时间") + private String taskEndDateTime; + + @Column(name="TASK_STATUS") + @ApiParam(value ="任务完成情况") + private String taskStatus; + + @Column(name="TASK_LOG") + @ApiParam(value ="任务日志") + private String taskLog; + + @Column(name="TASK_LOG_ERROR") + @ApiParam(value ="任务异常日志") + 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 new file mode 100644 index 0000000..a5f01af --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/Tool.java @@ -0,0 +1,71 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 硬件设备表 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:46.137 + * @Modify : + **/ +@Data +@Entity +@Table(name="TOOL") +@DynamicInsert +@DynamicUpdate +@Api(value="硬件设备表",description = "硬件设备表") +public class Tool extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + + @Column(name="TOOL_TYPE_ID") + @ApiParam(value ="类型ID") + private String toolTypeId; + + @Column(name="RED_TOOL_TYPE_NAME") + @ApiParam(value ="类型名称") + private String redToolTypeName; + + @Column(name="TOOL_STATUS") + @ApiParam(value ="设备状态(1.正常,2.禁用)") + private Integer toolStatus; + + @Column(name="TOOL_HOST") + @ApiParam(value ="IP地址") + private String toolHost; + + @Column(name="TOOL_PORT") + @ApiParam(value ="端口") + private Integer toolPort; + + @Column(name="TOOL_CONN_TYPE") + @ApiParam(value ="连接方式(1.网口,2.串口,3.USB......)") + private Integer toolConnType; + + @Column(name="TOOL_DATA_TYPE") + @ApiParam(value ="传输数据类型(1.字符串,2.二进制数据流....)") + private Integer toolDataType; + + @Column(name="TOOL_OPERATING") + @ApiParam(value ="操作内容") + private String toolOperating; + + @Column(name="TOOL_DESCRIPTION") + @ApiParam(value ="描述") + 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 new file mode 100644 index 0000000..3744626 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/bean/ToolType.java @@ -0,0 +1,35 @@ +package cn.estsh.i3plus.pojo.platform.bean; + +import cn.estsh.i3plus.pojo.model.base.BaseBean; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiParam; +import lombok.Data; +import org.hibernate.annotations.DynamicInsert; +import org.hibernate.annotations.DynamicUpdate; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Table; +import java.text.DecimalFormat; + +/** + * @Description : 设备类型 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:52:46.217 + * @Modify : + **/ +@Data +@Entity +@Table(name="TOOL_TYPE") +@DynamicInsert +@DynamicUpdate +@Api(value="设备类型",description = "设备类型") +public class ToolType extends BaseBean { + + + @Column(name="NAME") + @ApiParam(value ="名称") + private String name; + +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/DepartmentRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/DepartmentRepository.java new file mode 100644 index 0000000..5d97d43 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/DepartmentRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.Department; + +/** + * @Description : 部门 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:02:59.954 + * @Modify : + **/ +public interface DepartmentRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseConfigRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseConfigRepository.java new file mode 100644 index 0000000..83900c8 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseConfigRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.EnterpriseConfig; + +/** + * @Description : 企业配置信息 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.074 + * @Modify : + **/ +public interface EnterpriseConfigRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseRepository.java new file mode 100644 index 0000000..9c78341 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/EnterpriseRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.Enterprise; + +/** + * @Description : 企业信息 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.008 + * @Modify : + **/ +public interface EnterpriseRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogActionRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogActionRepository.java new file mode 100644 index 0000000..939bd04 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogActionRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.LogAction; + +/** + * @Description : 操作日志表 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.118 + * @Modify : + **/ +public interface LogActionRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogSystemRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogSystemRepository.java new file mode 100644 index 0000000..6fdcb87 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogSystemRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.LogSystem; + +/** + * @Description : 系统日志表 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.158 + * @Modify : + **/ +public interface LogSystemRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogUserLoginRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogUserLoginRepository.java new file mode 100644 index 0000000..51e9e8e --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/LogUserLoginRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.LogUserLogin; + +/** + * @Description : 用户登录记录 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.207 + * @Modify : + **/ +public interface LogUserLoginRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/OrganizeRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/OrganizeRepository.java new file mode 100644 index 0000000..384fe63 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/OrganizeRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.Organize; + +/** + * @Description : 组织 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.286 + * @Modify : + **/ +public interface OrganizeRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/PositionRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/PositionRepository.java new file mode 100644 index 0000000..be99be8 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/PositionRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.Position; + +/** + * @Description : 岗位 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.375 + * @Modify : + **/ +public interface PositionRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefRoleMenuRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefRoleMenuRepository.java new file mode 100644 index 0000000..2f7a895 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefRoleMenuRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.RefRoleMenu; + +/** + * @Description : 关系-角色菜单 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.506 + * @Modify : + **/ +public interface RefRoleMenuRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserDepartmentRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserDepartmentRepository.java new file mode 100644 index 0000000..05e8d77 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserDepartmentRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.RefUserDepartment; + +/** + * @Description : 关系-用户部门 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.596 + * @Modify : + **/ +public interface RefUserDepartmentRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserPositionRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserPositionRepository.java new file mode 100644 index 0000000..01a988a --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserPositionRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.RefUserPosition; + +/** + * @Description : 关系-用户岗位 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.727 + * @Modify : + **/ +public interface RefUserPositionRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserRoleRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserRoleRepository.java new file mode 100644 index 0000000..78c455a --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/RefUserRoleRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.RefUserRole; + +/** + * @Description : 关系-用户角色 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.825 + * @Modify : + **/ +public interface RefUserRoleRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysConfigRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysConfigRepository.java new file mode 100644 index 0000000..62ba1e1 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysConfigRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysConfig; + +/** + * @Description : 系统配置 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.895 + * @Modify : + **/ +public interface SysConfigRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysDictionaryRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysDictionaryRepository.java new file mode 100644 index 0000000..c8701d0 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysDictionaryRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysDictionary; + +/** + * @Description : 系统字典 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:00.958 + * @Modify : + **/ +public interface SysDictionaryRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysFileRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysFileRepository.java new file mode 100644 index 0000000..e8a30e7 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysFileRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysFile; + +/** + * @Description : 文件 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.024 + * @Modify : + **/ +public interface SysFileRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMenuRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMenuRepository.java new file mode 100644 index 0000000..b72d2ca --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMenuRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysMenu; + +/** + * @Description : 系统功能 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.105 + * @Modify : + **/ +public interface SysMenuRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMessageRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMessageRepository.java new file mode 100644 index 0000000..b0d2592 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysMessageRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysMessage; + +/** + * @Description : 系统消息 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.161 + * @Modify : + **/ +public interface SysMessageRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysRoleRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysRoleRepository.java new file mode 100644 index 0000000..75a98ee --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysRoleRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysRole; + +/** + * @Description : 系统角色 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.207 + * @Modify : + **/ +public interface SysRoleRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysTimeExpressionRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysTimeExpressionRepository.java new file mode 100644 index 0000000..2db95ef --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysTimeExpressionRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysTimeExpression; + +/** + * @Description : 系统时间表达式 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.252 + * @Modify : + **/ +public interface SysTimeExpressionRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysUserInfoRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysUserInfoRepository.java new file mode 100644 index 0000000..9b8235c --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/SysUserInfoRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.SysUserInfo; + +/** + * @Description : 用户详细 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.335 + * @Modify : + **/ +public interface SysUserInfoRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRecordingRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRecordingRepository.java new file mode 100644 index 0000000..d40e1c5 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRecordingRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.TaskTimedRecording; + +/** + * @Description : 定时任务执行记录 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.409 + * @Modify : + **/ +public interface TaskTimedRecordingRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRepository.java new file mode 100644 index 0000000..8d71b8c --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/TaskTimedRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.TaskTimed; + +/** + * @Description : 定时任务 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.372 + * @Modify : + **/ +public interface TaskTimedRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolRepository.java new file mode 100644 index 0000000..8cedabe --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.Tool; + +/** + * @Description : 硬件设备表 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.445 + * @Modify : + **/ +public interface ToolRepository extends BaseRepository { +} diff --git a/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolTypeRepository.java b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolTypeRepository.java new file mode 100644 index 0000000..27624b2 --- /dev/null +++ b/modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repository/ToolTypeRepository.java @@ -0,0 +1,14 @@ +package cn.estsh.i3plus.pojo.platform.repository; + +import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository; +import cn.estsh.i3plus.pojo.platform.bean.ToolType; + +/** + * @Description : 设备类型 + * @Reference : + * @Author : wei.peng + * @Date : 2018-10-22 12:03:01.486 + * @Modify : + **/ +public interface ToolTypeRepository extends BaseRepository { +}