parent
6a48f99f03
commit
d718b7bc81
25 changed files with 201 additions and 331 deletions
@ -1,20 +0,0 @@ |
|||||||
package com.daqing.financial.guarantee.controller; |
|
||||||
|
|
||||||
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping; |
|
||||||
|
|
||||||
import org.springframework.web.bind.annotation.RestController; |
|
||||||
|
|
||||||
/** |
|
||||||
* <p> |
|
||||||
* 合规调查记录 前端控制器 |
|
||||||
* </p> |
|
||||||
* |
|
||||||
* @author Qyq |
|
||||||
* @since 2020-11-05 |
|
||||||
*/ |
|
||||||
@RestController |
|
||||||
@RequestMapping("/dg-compliance-assign-user") |
|
||||||
public class DgComplianceAssignUserController { |
|
||||||
|
|
||||||
} |
|
@ -1,18 +0,0 @@ |
|||||||
package com.daqing.financial.guarantee.mapper; |
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||||
import com.daqing.framework.domain.guarantee.DgComplianceAssignUser; |
|
||||||
import org.apache.ibatis.annotations.Mapper; |
|
||||||
|
|
||||||
/** |
|
||||||
* <p> |
|
||||||
* 合规调查记录 Mapper 接口 |
|
||||||
* </p> |
|
||||||
* |
|
||||||
* @author Qyq |
|
||||||
* @since 2020-11-05 |
|
||||||
*/ |
|
||||||
@Mapper |
|
||||||
public interface DgComplianceAssignUserMapper extends BaseMapper<DgComplianceAssignUser> { |
|
||||||
|
|
||||||
} |
|
@ -1,16 +0,0 @@ |
|||||||
package com.daqing.financial.guarantee.service; |
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService; |
|
||||||
import com.daqing.framework.domain.guarantee.DgComplianceAssignUser; |
|
||||||
|
|
||||||
/** |
|
||||||
* <p> |
|
||||||
* 合规调查记录 服务类 |
|
||||||
* </p> |
|
||||||
* |
|
||||||
* @author Qyq |
|
||||||
* @since 2020-11-05 |
|
||||||
*/ |
|
||||||
public interface IDgComplianceAssignUserService extends IService<DgComplianceAssignUser> { |
|
||||||
|
|
||||||
} |
|
@ -1,20 +0,0 @@ |
|||||||
package com.daqing.financial.guarantee.service.impl; |
|
||||||
|
|
||||||
import com.daqing.financial.guarantee.mapper.DgComplianceAssignUserMapper; |
|
||||||
import com.daqing.financial.guarantee.service.IDgComplianceAssignUserService; |
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
||||||
import com.daqing.framework.domain.guarantee.DgComplianceAssignUser; |
|
||||||
import org.springframework.stereotype.Service; |
|
||||||
|
|
||||||
/** |
|
||||||
* <p> |
|
||||||
* 合规调查记录 服务实现类 |
|
||||||
* </p> |
|
||||||
* |
|
||||||
* @author Qyq |
|
||||||
* @since 2020-11-05 |
|
||||||
*/ |
|
||||||
@Service |
|
||||||
public class DgComplianceAssignUserServiceImpl extends ServiceImpl<DgComplianceAssignUserMapper, DgComplianceAssignUser> implements IDgComplianceAssignUserService { |
|
||||||
|
|
||||||
} |
|
@ -1,20 +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.guarantee.mapper.DgComplianceAssignUserMapper"> |
|
||||||
|
|
||||||
<!-- 通用查询映射结果 --> |
|
||||||
<resultMap id="BaseResultMap" type="com.daqing.framework.domain.guarantee.DgComplianceAssignUser"> |
|
||||||
<id column="id" property="id" /> |
|
||||||
<result column="company_id" property="companyId" /> |
|
||||||
<result column="emp_id" property="empId" /> |
|
||||||
<result column="type" property="type" /> |
|
||||||
<result column="status" property="status" /> |
|
||||||
<result column="amount" property="amount" /> |
|
||||||
<result column="term" property="term" /> |
|
||||||
<result column="remark" property="remark" /> |
|
||||||
<result column="apply_content" property="applyContent" /> |
|
||||||
<result column="create_time" property="createTime" /> |
|
||||||
<result column="update_time" property="updateTime" /> |
|
||||||
</resultMap> |
|
||||||
|
|
||||||
</mapper> |
|
@ -1,79 +0,0 @@ |
|||||||
package com.daqing.framework.domain.guarantee; |
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.*; |
|
||||||
import io.swagger.annotations.ApiModelProperty; |
|
||||||
import lombok.Data; |
|
||||||
|
|
||||||
import java.io.Serializable; |
|
||||||
import java.math.BigDecimal; |
|
||||||
import java.util.Date; |
|
||||||
|
|
||||||
/** |
|
||||||
* <p> |
|
||||||
* 合规调查记录 |
|
||||||
* </p> |
|
||||||
* |
|
||||||
* @author Qyq |
|
||||||
* @since 2020-11-05 |
|
||||||
*/ |
|
||||||
@Data |
|
||||||
@TableName("dg_compliance_assign_user") |
|
||||||
public class DgComplianceAssignUser implements Serializable { |
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L; |
|
||||||
|
|
||||||
/** |
|
||||||
* 主键id |
|
||||||
*/ |
|
||||||
@TableId(value = "id", type = IdType.AUTO) |
|
||||||
private Integer id; |
|
||||||
|
|
||||||
/** |
|
||||||
* 企业id |
|
||||||
*/ |
|
||||||
private Integer companyId; |
|
||||||
|
|
||||||
/** |
|
||||||
* 员工id |
|
||||||
*/ |
|
||||||
private Integer empId; |
|
||||||
|
|
||||||
/** |
|
||||||
* 类型(1:第一审批人 2:指派人AB角 3:第一审批人审核 3:经理) |
|
||||||
*/ |
|
||||||
private Integer type; |
|
||||||
|
|
||||||
/** |
|
||||||
* 状态(1:待指派 2:审核中 3:审核通过 4:审核不通过 5:驳回) |
|
||||||
*/ |
|
||||||
private Integer status; |
|
||||||
|
|
||||||
/** |
|
||||||
* 审核金额 |
|
||||||
*/ |
|
||||||
private BigDecimal amount; |
|
||||||
|
|
||||||
/** |
|
||||||
* 期限 |
|
||||||
*/ |
|
||||||
private String term; |
|
||||||
|
|
||||||
/** |
|
||||||
* 补充调查原因 |
|
||||||
*/ |
|
||||||
private String remark; |
|
||||||
|
|
||||||
/** |
|
||||||
* 审核意见 |
|
||||||
*/ |
|
||||||
private String applyContent; |
|
||||||
|
|
||||||
@ApiModelProperty(value = "创建时间") |
|
||||||
@TableField(fill = FieldFill.INSERT) |
|
||||||
private Date createTime; |
|
||||||
|
|
||||||
@ApiModelProperty(value = "更新时间") |
|
||||||
@TableField(fill = FieldFill.INSERT_UPDATE) |
|
||||||
private Date updateTime; |
|
||||||
|
|
||||||
} |
|
Loading…
Reference in new issue