Merge remote-tracking branch 'origin/master'
commit
f6d209250f
@ -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,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,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,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,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,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…
Reference in New Issue