Merge remote-tracking branch 'origin/master'

yun-zuoyi
alwaysfrin 7 years ago
commit f6d209250f

@ -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 16:58:42.539
* @Modify :
**/
@Data
@Entity
@Table(name="DEPARTMENT")
@DynamicInsert
@DynamicUpdate
@Api(value="部门",description = "部门")
public class Department extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="DEPARTMENT_CODE")
@ApiParam(value ="部门代码" , access ="部门代码")
private String departmentCode;
@Column(name="RED_PARENT_NAME")
@ApiParam(value ="父节点名称" , access ="父节点名称")
private String redParentName;
@Column(name="PARENT_ID")
@ApiParam(value ="父节点ID" , access ="父节点ID")
private String parentId;
@Column(name="DEPARTMENT_STATUS")
@ApiParam(value ="部门状态1.正常2.禁用)" , example ="1" , access ="部门状态1.正常2.禁用)")
private Integer departmentStatus;
@Column(name="RED_ORGANIZATION_NAME")
@ApiParam(value ="所属组织名称" , access ="所属组织名称")
private String redOrganizationName;
@Column(name="ORGANIZATION_ID")
@ApiParam(value ="所属组织" , access ="所属组织")
private String organizationId;
@Column(name="DEPARTMENT_SORT")
@ApiParam(value ="排序" , example ="1" , access ="排序")
private Integer departmentSort;
}

@ -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 16:58:42.607
* @Modify :
**/
@Data
@Entity
@Table(name="ENTERPRISE")
@DynamicInsert
@DynamicUpdate
@Api(value="企业信息",description = "企业信息")
public class Enterprise extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="ENTERPRISE_STATUS")
@ApiParam(value ="企业状态(1.正常2.到期3.试用)" , example ="1" , access ="企业状态(1.正常2.到期3.试用)")
private Integer enterpriseStatus;
@Column(name="ENTERPRISE_EQUIPMENT_ID")
@ApiParam(value ="服务器设备ID" , access ="服务器设备ID")
private String enterpriseEquipmentId;
@Column(name="ENTERPRISE_START_DATE_TIME")
@ApiParam(value ="企业开始使用时间" , access ="企业开始使用时间")
private String enterpriseStartDateTime;
@Column(name="ENTERPRISE_END_DATE_TIME")
@ApiParam(value ="企业结束使用时间" , access ="企业结束使用时间")
private String enterpriseEndDateTime;
@Column(name="ENTERPRISE_NUM_REG_USER")
@ApiParam(value ="用户注册数" , example ="0" , access ="用户注册数")
private Integer enterpriseNumRegUser;
@Column(name="ENTERPRISE_NUM_SYN_USER")
@ApiParam(value ="用户同时在线" , example ="0" , access ="用户同时在线")
private Integer enterpriseNumSynUser;
@Column(name="ENTERPRISE_NUM_FACTORY")
@ApiParam(value ="工厂数量" , example ="0" , access ="工厂数量")
private Integer enterpriseNumFactory;
@Column(name="ENTERPRISE_NUM_WAREHOUSE")
@ApiParam(value ="仓库数量" , example ="0" , access ="仓库数量")
private Integer enterpriseNumWarehouse;
@Column(name="ENTERPRISE_CONTACT_NAME")
@ApiParam(value ="企业联系人" , access ="企业联系人")
private String enterpriseContactName;
@Column(name="ENTERPRISE_CONTACT_EMAIL")
@ApiParam(value ="企业邮箱" , access ="企业邮箱")
private String enterpriseContactEmail;
@Column(name="ENTERPRISE_CONTACT_PHONE")
@ApiParam(value ="企业联系电话" , access ="企业联系电话")
private String enterpriseContactPhone;
@Column(name="ENTERPRISE_ADDR")
@ApiParam(value ="企业公司地址" , access ="企业公司地址")
private String enterpriseAddr;
}

@ -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 16:58:42.664
* @Modify :
**/
@Data
@Entity
@Table(name="ENTERPRISE_CONFIG")
@DynamicInsert
@DynamicUpdate
@Api(value="企业配置信息",description = "企业配置信息")
public class EnterpriseConfig extends BaseBean {
@Column(name="ENTERPRISE_ID")
@ApiParam(value ="企业id" , access ="企业id")
private String enterpriseId;
@Column(name="NAME")
@ApiParam(value ="配置名称" , access ="配置名称")
private String name;
@Column(name="CONFIG_TYPE_ID")
@ApiParam(value ="配置类型" , example ="0" , access ="配置类型")
private Integer configTypeId;
@Column(name="CONFIG_PARENT_ID")
@ApiParam(value ="配置父节点" , access ="配置父节点")
private String configParentId;
@Column(name="CONFIG_KEY")
@ApiParam(value ="配置代码" , access ="配置代码")
private String configKey;
@Column(name="CONFIG_VALUE")
@ApiParam(value ="配置值" , access ="配置值")
private String configValue;
@Column(name="CONFIG_DESCRIPTION")
@ApiParam(value ="配置说明" , access ="配置说明")
private String configDescription;
}

@ -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 16:58:42.720
* @Modify :
**/
@Data
@Entity
@Table(name="LOG_ACTION")
@DynamicInsert
@DynamicUpdate
@Api(value="操作日志表",description = "操作日志表")
public class LogAction extends BaseBean {
@Column(name="ACTION_MODULE_NAME")
@ApiParam(value ="模块名称" , access ="模块名称")
private String actionModuleName;
@Column(name="ACTION_TYPE_ID")
@ApiParam(value ="操作类型" , access ="操作类型")
private String actionTypeId;
@Column(name="ACTION_OBJECT")
@ApiParam(value ="操作对象" , access ="操作对象")
private String actionObject;
@Column(name="ACTION_FIRST_DATA")
@ApiParam(value ="操作前数据" , access ="操作前数据")
private String actionFirstData;
@Column(name="ACTION_LAST_DATA")
@ApiParam(value ="操作后数据" , access ="操作后数据")
private String actionLastData;
@Column(name="ACTION_IP")
@ApiParam(value ="服务器IP" , access ="服务器IP")
private String actionIp;
@Column(name="ACTION_TERMINAL")
@ApiParam(value ="操作终端" , access ="操作终端")
private String actionTerminal;
@Column(name="ACTION_USER_NAME")
@ApiParam(value ="操作人名称" , access ="操作人名称")
private String actionUserName;
}

@ -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 16:58:42.784
* @Modify :
**/
@Data
@Entity
@Table(name="LOG_SYSTEM")
@DynamicInsert
@DynamicUpdate
@Api(value="系统日志表",description = "系统日志表")
public class LogSystem extends BaseBean {
@Column(name="LOG_MOULE_NAME")
@ApiParam(value ="服务名称" , access ="服务名称")
private String logMouleName;
@Column(name="LOG_IP")
@ApiParam(value ="服务器IP" , access ="服务器IP")
private String logIp;
@Column(name="LOG_CLASS")
@ApiParam(value ="触发路径" , access ="触发路径")
private String logClass;
@Column(name="LOG_METHOD")
@ApiParam(value ="触发方法" , access ="触发方法")
private String logMethod;
@Column(name="LOG_LEVEL")
@ApiParam(value ="日志级别1.DEBUG2.INFO3.ERROR" , example ="1" , access ="日志级别1.DEBUG2.INFO3.ERROR")
private Integer logLevel;
@Column(name="LOG_MESSAGE")
@ApiParam(value ="日志信息" , access ="日志信息")
private String logMessage;
@Column(name="LOG_USER_NAME")
@ApiParam(value ="操作人名称" , access ="操作人名称")
private String logUserName;
}

@ -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 16:58:42.856
* @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" , access ="用户ID")
private String userId;
@Column(name="LOG_LOGIN_NAME")
@ApiParam(value ="登录名称" , access ="登录名称")
private String logLoginName;
@Column(name="LOG_LOGIN_STATUS")
@ApiParam(value ="登录状态1.成功2.失败3锁定" , example ="1" , access ="登录状态1.成功2.失败3锁定")
private Integer logLoginStatus;
@Column(name="LOG_LOGIN_PLATFORM_ID")
@ApiParam(value ="登录平台ID" , example ="1" , access ="登录平台ID")
private Integer logLoginPlatformId;
@Column(name="LOG_LOGIN_PLATFORM_NAME")
@ApiParam(value ="登录平台名称" , access ="登录平台名称")
private String logLoginPlatformName;
@Column(name="LOG_LOGIN_HOST")
@ApiParam(value ="登录IP" , access ="登录IP")
private String logLoginHost;
@Column(name="LOG_LOGIN_DATE_TIME")
@ApiParam(value ="登录时间" , access ="登录时间")
private String logLoginDateTime;
}

@ -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 16:58:42.923
* @Modify :
**/
@Data
@Entity
@Table(name="ORGANIZE")
@DynamicInsert
@DynamicUpdate
@Api(value="组织",description = "组织")
public class Organize extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="ORGANIZATION_CODE")
@ApiParam(value ="组织代码" , access ="组织代码")
private String organizationCode;
@Column(name="ORGANIZATION_TYPE_ID")
@ApiParam(value ="组织类型ID1.集团2.公司3.工厂)" , example ="1" , access ="组织类型ID1.集团2.公司3.工厂)")
private Integer organizationTypeId;
@Column(name="ORGANIZATION_TYPE_NAME")
@ApiParam(value ="组织类型名称" , access ="组织类型名称")
private String organizationTypeName;
@Column(name="PARENT_ID")
@ApiParam(value ="父节点" , access ="父节点")
private String parentId;
@Column(name="RED_PARENT_NAME")
@ApiParam(value ="父节点" , access ="父节点")
private String redParentName;
@Column(name="ORGANIZATION_DESCRIPTION")
@ApiParam(value ="组织描述" , access ="组织描述")
private String organizationDescription;
@Column(name="ORGANIZATION_SORT")
@ApiParam(value ="排序" , example ="1" , access ="排序")
private Integer organizationSort;
@Column(name="ORGANIZATION_STATUS")
@ApiParam(value ="组织状态1.正常2.禁用)" , example ="1" , access ="组织状态1.正常2.禁用)")
private Integer organizationStatus;
}

@ -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 16:58:43.026
* @Modify :
**/
@Data
@Entity
@Table(name="POSITION")
@DynamicInsert
@DynamicUpdate
@Api(value="岗位",description = "岗位")
public class Position extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="POSITION_CODE")
@ApiParam(value ="岗位代码" , access ="岗位代码")
private String positionCode;
@Column(name="PARENT_ID")
@ApiParam(value ="上级岗位" , access ="上级岗位")
private String parentId;
@Column(name="RED_PARENT_NAME")
@ApiParam(value ="上级岗位名称" , access ="上级岗位名称")
private String redParentName;
@Column(name="POSITION_STATUS")
@ApiParam(value ="状态1.正常2.禁用)" , example ="1" , access ="状态1.正常2.禁用)")
private Integer positionStatus;
@Column(name="POSITION_DESCRIPTION")
@ApiParam(value ="描述" , access ="描述")
private String positionDescription;
}

@ -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 16:58:43.135
* @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" , access ="菜单ID")
private String menuId;
@Column(name="RED_MENU_NAME")
@ApiParam(value ="菜单名称" , access ="菜单名称")
private String redMenuName;
@Column(name="ROLE_ID")
@ApiParam(value ="角色ID" , access ="角色ID")
private String roleId;
@Column(name="RED_ROLE_NAME")
@ApiParam(value ="角色名称" , access ="角色名称")
private String redRoleName;
}

@ -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 16:58:43.239
* @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" , access ="用户ID")
private String userId;
@Column(name="DEPARTMENT_ID")
@ApiParam(value ="部门ID" , access ="部门ID")
private String departmentId;
@Column(name="RED_DEPARTMENT_NAME")
@ApiParam(value ="部门名称" , access ="部门名称")
private String redDepartmentName;
}

@ -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 16:58:43.341
* @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" , access ="组织ID")
private String organizeId;
@Column(name="USER_ID")
@ApiParam(value ="用户ID" , access ="用户ID")
private String userId;
@Column(name="POSITION_ID")
@ApiParam(value ="岗位ID" , access ="岗位ID")
private String positionId;
@Column(name="RED_POSITION_NAME")
@ApiParam(value ="岗位名称" , access ="岗位名称")
private String redPositionName;
}

@ -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 16:58:43.417
* @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" , access ="用户ID")
private String userId;
@Column(name="ROLE_ID")
@ApiParam(value ="角色ID" , access ="角色ID")
private String roleId;
@Column(name="RED_ROLE_ID")
@ApiParam(value ="角色名称" , access ="角色名称")
private String redRoleId;
}

@ -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 16:58:43.499
* @Modify :
**/
@Data
@Entity
@Table(name="SYS_CONFIG")
@DynamicInsert
@DynamicUpdate
@Api(value="系统配置",description = "系统配置")
public class SysConfig extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="CONFIG_TYPE_ID")
@ApiParam(value ="配置类型ID1.系统配置..." , example ="1" , access ="配置类型ID1.系统配置...")
private Integer configTypeId;
@Column(name="CONFIG_TYPE_NAME")
@ApiParam(value ="配置类型名称" , access ="配置类型名称")
private String configTypeName;
@Column(name="CONFIG_CODE")
@ApiParam(value ="配置代码" , access ="配置代码")
private String configCode;
@Column(name="CONFIG_VALUE")
@ApiParam(value ="配置值" , access ="配置值")
private String configValue;
@Column(name="CONFIG_DESCRIPTION")
@ApiParam(value ="配置描述" , access ="配置描述")
private String configDescription;
}

@ -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 16:58:43.550
* @Modify :
**/
@Data
@Entity
@Table(name="SYS_DICTIONARY")
@DynamicInsert
@DynamicUpdate
@Api(value="系统字典",description = "系统字典")
public class SysDictionary extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="DICTIONART_CODE")
@ApiParam(value ="字典代码" , access ="字典代码")
private String dictionartCode;
@Column(name="PARENT_ID")
@ApiParam(value ="父节点" , access ="父节点")
private String parentId;
@Column(name="RED_PARENT_NAME")
@ApiParam(value ="父级节点名称" , access ="父级节点名称")
private String redParentName;
@Column(name="DICTIONARY_VALUE")
@ApiParam(value ="字典值" , access ="字典值")
private String dictionaryValue;
@Column(name="DICTIONARY_SORT")
@ApiParam(value ="排序" , example ="1" , access ="排序")
private Integer dictionarySort;
@Column(name="DICTIONARY_DESCRIPTION")
@ApiParam(value ="描述" , access ="描述")
private String dictionaryDescription;
}

@ -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 16:58:43.593
* @Modify :
**/
@Data
@Entity
@Table(name="SYS_FILE")
@DynamicInsert
@DynamicUpdate
@Api(value="文件",description = "文件")
public class SysFile extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="USER_ID")
@ApiParam(value ="用户ID" , access ="用户ID")
private String userId;
@Column(name="FILE_PATH")
@ApiParam(value ="文件路径" , access ="文件路径")
private String filePath;
@Column(name="FILE_ORIGINAL_NAME")
@ApiParam(value ="原始文件名称" , access ="原始文件名称")
private String fileOriginalName;
@Column(name="FILE_TYPE_ID")
@ApiParam(value ="文件类型ID(字典)" , access ="文件类型ID(字典)")
private String fileTypeId;
@Column(name="FILE_TYPE_NAME")
@ApiParam(value ="文件类型名称" , access ="文件类型名称")
private String fileTypeName;
@Column(name="FILE_SIZE")
@ApiParam(value ="文件大小(KB)" , access ="文件大小(KB)")
private String fileSize;
@Column(name="DOWNLOADS")
@ApiParam(value ="下载次数" , example ="0" , access ="下载次数")
private Integer downloads;
}

@ -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 16:58:43.641
* @Modify :
**/
@Data
@Entity
@Table(name="SYS_MENU")
@DynamicInsert
@DynamicUpdate
@Api(value="系统功能",description = "系统功能")
public class SysMenu extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="功能名称" , access ="功能名称")
private String name;
@Column(name="MENU_TYPE_ID")
@ApiParam(value ="功能类型1.模块2.菜单3.按钮)" , example ="1" , access ="功能类型1.模块2.菜单3.按钮)")
private Integer menuTypeId;
@Column(name="RED_MENU_TYPE_NAME")
@ApiParam(value ="功能类型名称" , access ="功能类型名称")
private String redMenuTypeName;
@Column(name="PARENT_ID")
@ApiParam(value ="父级功能ID" , access ="父级功能ID")
private String parentId;
@Column(name="RED_PARENT_NAME")
@ApiParam(value ="父级功能名称" , access ="父级功能名称")
private String redParentName;
@Column(name="MENU_CLASS_PATH")
@ApiParam(value ="资源class path" , access ="资源class path")
private String menuClassPath;
@Column(name="MENU_URL")
@ApiParam(value ="资源 url" , access ="资源 url")
private String menuUrl;
@Column(name="MENU_CSS")
@ApiParam(value ="资源css" , access ="资源css")
private String menuCss;
@Column(name="MENU_ICON")
@ApiParam(value ="资源icon" , access ="资源icon")
private String menuIcon;
@Column(name="MENU_STATUS")
@ApiParam(value ="功能状态1.正常2.禁用)" , example ="1" , access ="功能状态1.正常2.禁用)")
private Integer menuStatus;
}

@ -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 16:58:43.689
* @Modify :
**/
@Data
@Entity
@Table(name="SYS_MESSAGE")
@DynamicInsert
@DynamicUpdate
@Api(value="系统消息",description = "系统消息")
public class SysMessage extends BaseBean {
@Column(name="MESSAGE_TITLE")
@ApiParam(value ="消息标题" , access ="消息标题")
private String messageTitle;
@Column(name="MESSAGE_TYPE_ID")
@ApiParam(value ="消息类型(1.通知2.站内信)" , example ="1" , access ="消息类型(1.通知2.站内信)")
private Integer messageTypeId;
@Column(name="RED_MESSAGE_TYPE_NAME")
@ApiParam(value ="消息类型名称" , access ="消息类型名称")
private String redMessageTypeName;
@Column(name="MESSAGE_SEND_ID")
@ApiParam(value ="发送者" , access ="发送者")
private String messageSendId;
@Column(name="MESSAGE_ACCEPT_ID")
@ApiParam(value ="接受者" , access ="接受者")
private String messageAcceptId;
@Column(name="MESSAGE_CONTENT")
@ApiParam(value ="消息内容" , access ="消息内容")
private String messageContent;
@Column(name="MESSAGE_STATUS")
@ApiParam(value ="消息状态1.启用2.禁用)" , example ="1" , access ="消息状态1.启用2.禁用)")
private Integer messageStatus;
}

@ -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 16:58:43.801
* @Modify :
**/
@Data
@Entity
@Table(name="SYS_TIME_EXPRESSION")
@DynamicInsert
@DynamicUpdate
@Api(value="系统时间表达式",description = "系统时间表达式")
public class SysTimeExpression extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="TIME_EXPRESSION")
@ApiParam(value ="表达式内容" , access ="表达式内容")
private String timeExpression;
@Column(name="TIME_DESCRIPTION")
@ApiParam(value ="表达式描述" , access ="表达式描述")
private String timeDescription;
}

@ -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 16:58:43.910
* @Modify :
**/
@Data
@Entity
@Table(name="SYS_USER_INFO")
@DynamicInsert
@DynamicUpdate
@Api(value="用户详细",description = "用户详细")
public class SysUserInfo extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="USER_ID")
@ApiParam(value ="用户ID" , access ="用户ID")
private String userId;
@Column(name="ORGANIZE_ID")
@ApiParam(value ="组织ID" , access ="组织ID")
private String organizeId;
@Column(name="USER_IMAGE_ID")
@ApiParam(value ="用户图像" , access ="用户图像")
private String userImageId;
@Column(name="USER_SEX")
@ApiParam(value ="性别1.男2.女)" , example ="1" , access ="性别1.男2.女)")
private Integer userSex;
@Column(name="USER_AGE")
@ApiParam(value ="年龄" , example ="1" , access ="年龄")
private Integer userAge;
@Column(name="USER_LOGIN_LASTAAA_DATE_TIME")
@ApiParam(value ="用户最后登录时间" , access ="用户最后登录时间")
private String userLoginLastaaaDateTime;
}

@ -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 16:58:43.952
* @Modify :
**/
@Data
@Entity
@Table(name="TASK_TIMED")
@DynamicInsert
@DynamicUpdate
@Api(value="定时任务",description = "定时任务")
public class TaskTimed extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="TIME_ID")
@ApiParam(value ="时间表达式ID" , access ="时间表达式ID")
private String timeId;
@Column(name="RED_TIME_NAME")
@ApiParam(value ="时间表达式名称" , access ="时间表达式名称")
private String redTimeName;
@Column(name="RED_TIME_EXPRESSION")
@ApiParam(value ="时间表达式" , access ="时间表达式")
private String redTimeExpression;
@Column(name="TASK_START_DATE_TIME")
@ApiParam(value ="任务开始时间" , access ="任务开始时间")
private String taskStartDateTime;
@Column(name="TASK_END_DATE_TIME")
@ApiParam(value ="任务结束时间" , access ="任务结束时间")
private String taskEndDateTime;
@Column(name="TASK_NUM_SUM")
@ApiParam(value ="执行总次数" , example ="0" , access ="执行总次数")
private Integer taskNumSum;
@Column(name="TASK_NUM_RUN")
@ApiParam(value ="执行次数" , example ="0" , access ="执行次数")
private Integer taskNumRun;
@Column(name="TASK_TYPE_ID")
@ApiParam(value ="任务类型1.定时任务)" , example ="1" , access ="任务类型1.定时任务)")
private Integer taskTypeId;
@Column(name="RESOURCE_CODE")
@ApiParam(value ="资源代码" , access ="资源代码")
private String resourceCode;
@Column(name="TASK_CLASS_PATH")
@ApiParam(value ="任务 class path" , access ="任务 class path")
private String taskClassPath;
@Column(name="TASK_URL")
@ApiParam(value ="任务 url" , access ="任务 url")
private String taskUrl;
@Column(name="TASK_DESCRIPTION")
@ApiParam(value ="任务描述" , access ="任务描述")
private String taskDescription;
@Column(name="TASK_STATUS")
@ApiParam(value ="任务状态1.正常2.禁用)" , example ="1" , access ="任务状态1.正常2.禁用)")
private Integer taskStatus;
@Column(name="LAST_RUN_DATE_TIME")
@ApiParam(value ="最后运行时间" , access ="最后运行时间")
private String lastRunDateTime;
}

@ -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 16:58:43.992
* @Modify :
**/
@Data
@Entity
@Table(name="TASK_TIMED_RECORDING")
@DynamicInsert
@DynamicUpdate
@Api(value="定时任务执行记录",description = "定时任务执行记录")
public class TaskTimedRecording extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="任务名称" , access ="任务名称")
private String name;
@Column(name="TIMED_TASK_ID")
@ApiParam(value ="任务编号" , access ="任务编号")
private String timedTaskId;
@Column(name="RED_TIME_ID")
@ApiParam(value ="时间表达式ID" , access ="时间表达式ID")
private String redTimeId;
@Column(name="RED_TIME_EXPRESSION")
@ApiParam(value ="时间表达式" , access ="时间表达式")
private String redTimeExpression;
@Column(name="TASK_START_DATE_TIME")
@ApiParam(value ="任务开始时间" , access ="任务开始时间")
private String taskStartDateTime;
@Column(name="TASK_END_DATE_TIME")
@ApiParam(value ="任务结束时间" , access ="任务结束时间")
private String taskEndDateTime;
@Column(name="TASK_STATUS")
@ApiParam(value ="任务完成情况" , access ="任务完成情况")
private String taskStatus;
@Column(name="TASK_LOG")
@ApiParam(value ="任务日志" , access ="任务日志")
private String taskLog;
@Column(name="TASK_LOG_ERROR")
@ApiParam(value ="任务异常日志" , access ="任务异常日志")
private String taskLogError;
}

@ -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 16:58:44.033
* @Modify :
**/
@Data
@Entity
@Table(name="TOOL")
@DynamicInsert
@DynamicUpdate
@Api(value="硬件设备表",description = "硬件设备表")
public class Tool extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
@Column(name="TOOL_TYPE_ID")
@ApiParam(value ="类型ID" , access ="类型ID")
private String toolTypeId;
@Column(name="RED_TOOL_TYPE_NAME")
@ApiParam(value ="类型名称" , access ="类型名称")
private String redToolTypeName;
@Column(name="TOOL_STATUS")
@ApiParam(value ="设备状态1.正常2.禁用)" , example ="1" , access ="设备状态1.正常2.禁用)")
private Integer toolStatus;
@Column(name="TOOL_HOST")
@ApiParam(value ="IP地址" , access ="IP地址")
private String toolHost;
@Column(name="TOOL_PORT")
@ApiParam(value ="端口" , example ="80" , access ="端口")
private Integer toolPort;
@Column(name="TOOL_CONN_TYPE")
@ApiParam(value ="连接方式1.网口2.串口3.USB......" , example ="1" , access ="连接方式1.网口2.串口3.USB......")
private Integer toolConnType;
@Column(name="TOOL_DATA_TYPE")
@ApiParam(value ="传输数据类型1.字符串2.二进制数据流...." , example ="1" , access ="传输数据类型1.字符串2.二进制数据流....")
private Integer toolDataType;
@Column(name="TOOL_OPERATING")
@ApiParam(value ="操作内容" , access ="操作内容")
private String toolOperating;
@Column(name="TOOL_DESCRIPTION")
@ApiParam(value ="描述" , access ="描述")
private String toolDescription;
}

@ -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 16:58:44.081
* @Modify :
**/
@Data
@Entity
@Table(name="TOOL_TYPE")
@DynamicInsert
@DynamicUpdate
@Api(value="设备类型",description = "设备类型")
public class ToolType extends BaseBean {
@Column(name="NAME")
@ApiParam(value ="名称" , access ="名称")
private String name;
}

@ -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<Department, Long> {
}

@ -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<EnterpriseConfig, Long> {
}

@ -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<Enterprise, Long> {
}

@ -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<LogAction, Long> {
}

@ -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<LogSystem, Long> {
}

@ -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<LogUserLogin, Long> {
}

@ -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<Organize, Long> {
}

@ -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<Position, Long> {
}

@ -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<RefRoleMenu, Long> {
}

@ -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<RefUserDepartment, Long> {
}

@ -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<RefUserPosition, Long> {
}

@ -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<RefUserRole, Long> {
}

@ -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<SysConfig, Long> {
}

@ -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<SysDictionary, Long> {
}

@ -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<SysFile, Long> {
}

@ -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<SysMenu, Long> {
}

@ -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<SysMessage, Long> {
}

@ -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<SysRole, Long> {
}

@ -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<SysTimeExpression, Long> {
}

@ -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<SysUserInfo, Long> {
}

@ -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<TaskTimedRecording, Long> {
}

@ -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<TaskTimed, Long> {
}

@ -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<Tool, Long> {
}

@ -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<ToolType, Long> {
}
Loading…
Cancel
Save