commit
96e58427d8
29 changed files with 505 additions and 32 deletions
@ -0,0 +1,21 @@ |
|||||||
|
package com.daqing.financial.guarantee.controller; |
||||||
|
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送详情表 前端控制器 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@RequestMapping("/dg-copy-for") |
||||||
|
public class DgCopyForController { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
package com.daqing.financial.guarantee.controller; |
||||||
|
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送用户表 前端控制器 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@RequestMapping("/dg-copy-user") |
||||||
|
public class DgCopyUserController { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
package com.daqing.financial.guarantee.controller; |
||||||
|
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 业务模块选择抄送用户表 前端控制器 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@RequestMapping("/dg-process-user") |
||||||
|
public class DgProcessUserController { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.daqing.financial.guarantee.mapper; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.daqing.framework.domain.guarantee.DgCopyFor; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送详情表 Mapper 接口 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface DgCopyForMapper extends BaseMapper<DgCopyFor> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.daqing.financial.guarantee.mapper; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.daqing.framework.domain.guarantee.DgCopyUser; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送用户表 Mapper 接口 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface DgCopyUserMapper extends BaseMapper<DgCopyUser> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.daqing.financial.guarantee.mapper; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.daqing.framework.domain.guarantee.DgProcessUser; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 业务模块选择抄送用户表 Mapper 接口 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface DgProcessUserMapper extends BaseMapper<DgProcessUser> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.daqing.financial.guarantee.service; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||||
|
import com.daqing.framework.domain.guarantee.DgCopyFor; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送详情表 服务类 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
public interface IDgCopyForService extends IService<DgCopyFor> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.daqing.financial.guarantee.service; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||||
|
import com.daqing.framework.domain.guarantee.DgCopyUser; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送用户表 服务类 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
public interface IDgCopyUserService extends IService<DgCopyUser> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.daqing.financial.guarantee.service; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||||
|
import com.daqing.framework.domain.guarantee.DgProcessUser; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 业务模块选择抄送用户表 服务类 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
public interface IDgProcessUserService extends IService<DgProcessUser> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
package com.daqing.financial.guarantee.service.impl; |
||||||
|
|
||||||
|
import com.daqing.financial.guarantee.mapper.DgCopyForMapper; |
||||||
|
import com.daqing.financial.guarantee.service.IDgCopyForService; |
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.daqing.framework.domain.guarantee.DgCopyFor; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送详情表 服务实现类 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class DgCopyForServiceImpl extends ServiceImpl<DgCopyForMapper, DgCopyFor> implements IDgCopyForService { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
package com.daqing.financial.guarantee.service.impl; |
||||||
|
|
||||||
|
import com.daqing.financial.guarantee.mapper.DgCopyUserMapper; |
||||||
|
import com.daqing.financial.guarantee.service.IDgCopyUserService; |
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.daqing.framework.domain.guarantee.DgCopyUser; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送用户表 服务实现类 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class DgCopyUserServiceImpl extends ServiceImpl<DgCopyUserMapper, DgCopyUser> implements IDgCopyUserService { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
package com.daqing.financial.guarantee.service.impl; |
||||||
|
|
||||||
|
import com.daqing.financial.guarantee.mapper.DgProcessUserMapper; |
||||||
|
import com.daqing.financial.guarantee.service.IDgProcessUserService; |
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.daqing.framework.domain.guarantee.DgProcessUser; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 业务模块选择抄送用户表 服务实现类 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class DgProcessUserServiceImpl extends ServiceImpl<DgProcessUserMapper, DgProcessUser> implements IDgProcessUserService { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="com.daqing.financial.guarantee.mapper.DgCopyForMapper"> |
||||||
|
|
||||||
|
<!-- 通用查询映射结果 --> |
||||||
|
<resultMap id="BaseResultMap" type="com.daqing.framework.domain.guarantee.DgCopyFor"> |
||||||
|
<id column="id" property="id" /> |
||||||
|
<result column="business_id" property="businessId" /> |
||||||
|
<result column="process_id" property="processId" /> |
||||||
|
<result column="pic_url" property="picUrl" /> |
||||||
|
</resultMap> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,12 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="com.daqing.financial.guarantee.mapper.DgCopyUserMapper"> |
||||||
|
|
||||||
|
<!-- 通用查询映射结果 --> |
||||||
|
<resultMap id="BaseResultMap" type="com.daqing.framework.domain.guarantee.DgCopyUser"> |
||||||
|
<id column="id" property="id" /> |
||||||
|
<result column="copy_id" property="copyId" /> |
||||||
|
<result column="user_id" property="userId" /> |
||||||
|
</resultMap> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,12 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="com.daqing.financial.guarantee.mapper.DgProcessUserMapper"> |
||||||
|
|
||||||
|
<!-- 通用查询映射结果 --> |
||||||
|
<resultMap id="BaseResultMap" type="com.daqing.framework.domain.guarantee.DgProcessUser"> |
||||||
|
<id column="id" property="id" /> |
||||||
|
<result column="process_id" property="processId" /> |
||||||
|
<result column="user_id" property="userId" /> |
||||||
|
</resultMap> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,81 @@ |
|||||||
|
package com.daqing.framework.domain.guarantee; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送详情表 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@TableName("dg_copy_for") |
||||||
|
public class DgCopyFor implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 主键id |
||||||
|
*/ |
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 业务id |
||||||
|
*/ |
||||||
|
private Integer businessId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 业务模块进程id |
||||||
|
*/ |
||||||
|
private Integer processId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 截图url |
||||||
|
*/ |
||||||
|
private String picUrl; |
||||||
|
|
||||||
|
public Integer getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(Integer id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
public Integer getBusinessId() { |
||||||
|
return businessId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setBusinessId(Integer businessId) { |
||||||
|
this.businessId = businessId; |
||||||
|
} |
||||||
|
public Integer getProcessId() { |
||||||
|
return processId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProcessId(Integer processId) { |
||||||
|
this.processId = processId; |
||||||
|
} |
||||||
|
public String getPicUrl() { |
||||||
|
return picUrl; |
||||||
|
} |
||||||
|
|
||||||
|
public void setPicUrl(String picUrl) { |
||||||
|
this.picUrl = picUrl; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String toString() { |
||||||
|
return "DgCopyFor{" + |
||||||
|
"id=" + id + |
||||||
|
", businessId=" + businessId + |
||||||
|
", processId=" + processId + |
||||||
|
", picUrl=" + picUrl + |
||||||
|
"}"; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,68 @@ |
|||||||
|
package com.daqing.framework.domain.guarantee; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 抄送用户表 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@TableName("dg_copy_user") |
||||||
|
public class DgCopyUser implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 主键id |
||||||
|
*/ |
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 抄送id |
||||||
|
*/ |
||||||
|
private Integer copyId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 用户id |
||||||
|
*/ |
||||||
|
private Integer userId; |
||||||
|
|
||||||
|
public Integer getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(Integer id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
public Integer getCopyId() { |
||||||
|
return copyId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCopyId(Integer copyId) { |
||||||
|
this.copyId = copyId; |
||||||
|
} |
||||||
|
public Integer getUserId() { |
||||||
|
return userId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUserId(Integer userId) { |
||||||
|
this.userId = userId; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String toString() { |
||||||
|
return "DgCopyUser{" + |
||||||
|
"id=" + id + |
||||||
|
", copyId=" + copyId + |
||||||
|
", userId=" + userId + |
||||||
|
"}"; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,68 @@ |
|||||||
|
package com.daqing.framework.domain.guarantee; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 业务模块选择抄送用户表 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @author Qyq |
||||||
|
* @since 2021-01-15 |
||||||
|
*/ |
||||||
|
@TableName("dg_process_user") |
||||||
|
public class DgProcessUser implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 主键id |
||||||
|
*/ |
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 业务模块id |
||||||
|
*/ |
||||||
|
private Integer processId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 用户id |
||||||
|
*/ |
||||||
|
private Integer userId; |
||||||
|
|
||||||
|
public Integer getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(Integer id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
public Integer getProcessId() { |
||||||
|
return processId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProcessId(Integer processId) { |
||||||
|
this.processId = processId; |
||||||
|
} |
||||||
|
public Integer getUserId() { |
||||||
|
return userId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUserId(Integer userId) { |
||||||
|
this.userId = userId; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String toString() { |
||||||
|
return "DgProcessUser{" + |
||||||
|
"id=" + id + |
||||||
|
", processId=" + processId + |
||||||
|
", userId=" + userId + |
||||||
|
"}"; |
||||||
|
} |
||||||
|
} |
@ -1,15 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
||||||
<mapper namespace="com.daqing.financial.hrauth.mapper.HrmsAccessRecordsLogMapper"> |
|
||||||
|
|
||||||
<!-- 通用查询映射结果 --> |
|
||||||
<resultMap id="BaseResultMap" type="com.daqing.financial.hrauth.hrms.HrmsAccessRecordsLog"> |
|
||||||
<id column="id" property="id" /> |
|
||||||
<result column="account" property="account" /> |
|
||||||
<result column="name" property="name" /> |
|
||||||
<result column="deptName" property="deptName" /> |
|
||||||
<result column="type" property="type" /> |
|
||||||
<result column="login_time" property="loginTime" /> |
|
||||||
</resultMap> |
|
||||||
|
|
||||||
</mapper> |
|
Loading…
Reference in new issue