diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgCopyForController.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgCopyForController.java new file mode 100644 index 00000000..674ee466 --- /dev/null +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgCopyForController.java @@ -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; + +/** + *
+ * 抄送详情表 前端控制器 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@RestController +@RequestMapping("/dg-copy-for") +public class DgCopyForController { + +} diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgCopyUserController.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgCopyUserController.java new file mode 100644 index 00000000..9b098043 --- /dev/null +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgCopyUserController.java @@ -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; + +/** + *+ * 抄送用户表 前端控制器 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@RestController +@RequestMapping("/dg-copy-user") +public class DgCopyUserController { + +} diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgProcessUserController.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgProcessUserController.java new file mode 100644 index 00000000..80134a6a --- /dev/null +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgProcessUserController.java @@ -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; + +/** + *+ * 业务模块选择抄送用户表 前端控制器 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@RestController +@RequestMapping("/dg-process-user") +public class DgProcessUserController { + +} diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgCopyForMapper.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgCopyForMapper.java new file mode 100644 index 00000000..89bc4295 --- /dev/null +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgCopyForMapper.java @@ -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; + +/** + *+ * 抄送详情表 Mapper 接口 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@Mapper +public interface DgCopyForMapper extends BaseMapper+ * 抄送用户表 Mapper 接口 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@Mapper +public interface DgCopyUserMapper extends BaseMapper+ * 业务模块选择抄送用户表 Mapper 接口 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@Mapper +public interface DgProcessUserMapper extends BaseMapper+ * 抄送详情表 服务类 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +public interface IDgCopyForService extends IService+ * 抄送用户表 服务类 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +public interface IDgCopyUserService extends IService+ * 业务模块选择抄送用户表 服务类 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +public interface IDgProcessUserService extends IService+ * 抄送详情表 服务实现类 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@Service +public class DgCopyForServiceImpl extends ServiceImpl+ * 抄送用户表 服务实现类 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@Service +public class DgCopyUserServiceImpl extends ServiceImpl+ * 业务模块选择抄送用户表 服务实现类 + *
+ * + * @author Qyq + * @since 2021-01-15 + */ +@Service +public class DgProcessUserServiceImpl extends ServiceImpl+ * 抄送详情表 + *
+ * + * @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 + + "}"; + } +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgCopyUser.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgCopyUser.java new file mode 100644 index 00000000..9b283407 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgCopyUser.java @@ -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; + +/** + *+ * 抄送用户表 + *
+ * + * @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 + + "}"; + } +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgProcessUser.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgProcessUser.java new file mode 100644 index 00000000..bded2da9 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgProcessUser.java @@ -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; + +/** + *+ * 业务模块选择抄送用户表 + *
+ * + * @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 + + "}"; + } +}