添加注册审核相关操作方法

ww
anthonywj 2 years ago
parent bd758b83f3
commit 77bf49fa2d

@ -0,0 +1,9 @@
package com.glxp.api.dao.sup;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.sup.UserCertEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserCertMapper extends BaseMapper<UserCertEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.sup;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.sup.UserCertSetEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserCertSetMapper extends BaseMapper<UserCertSetEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.sup;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.sup.UserCheckEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserCheckMapper extends BaseMapper<UserCheckEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.sup;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.sup.UserPersonEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserPersonMapper extends BaseMapper<UserPersonEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.sup;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.sup.UserRegisterEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserRegisterMapper extends BaseMapper<UserRegisterEntity> {
}

@ -0,0 +1,102 @@
package com.glxp.api.entity.sup;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
*
*/
@Data
@TableName(value = "user_cert")
public class UserCertEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
* ID
*/
@TableField(value = "businessId")
private Long businessId;
/**
*
*/
@TableField(value = "`name`")
private String name;
/**
*
*/
@TableField(value = "code")
private String code;
@TableField(value = "filePath")
private String filePath;
/**
*
*/
@TableField(value = "validDate")
private Date validDate;
/**
*
*/
@TableField(value = "expireDate")
private Date expireDate;
/**
*
*/
@TableField(value = "checkStatus")
private String checkStatus;
/**
*
*/
@TableField(value = "checkComment")
private String checkComment;
/**
* 01:
*/
@TableField(value = "`status`")
private String status;
/**
*
*/
@TableField(value = "remark")
private String remark;
/**
*
*/
@TableField(value = "`createUser`")
private String createUser;
/**
*
*/
@TableField(value = "createTime")
private Date createTime;
/**
*
*/
@TableField(value = "updateUser")
private String updateUser;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,63 @@
package com.glxp.api.entity.sup;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
*
*/
@Data
@TableName(value = "user_cert_set")
public class UserCertSetEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
*
*/
@TableField(value = "`name`")
private String name;
/**
*
*/
@TableField(value = "isNeed")
private String isNeed;
/**
*
*/
@TableField(value = "remark")
private String remark;
/**
*
*/
@TableField(value = "`createUser`")
private String createUser;
/**
*
*/
@TableField(value = "createTime")
private Date createTime;
/**
*
*/
@TableField(value = "updateUser")
private String updateUser;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,45 @@
package com.glxp.api.entity.sup;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
*
*/
@Data
@TableName(value = "user_check")
public class UserCheckEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
* ID
*/
@TableField(value = "businessId")
private Long businessId;
/**
*
*/
@TableField(value = "checkResult")
private String checkResult;
/**
*
*/
@TableField(value = "resultExplain")
private String resultExplain;
@TableField(value = "`createUser`")
private String createUser;
@TableField(value = "createTime")
private Date createTime;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,84 @@
package com.glxp.api.entity.sup;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
*
*/
@Data
@TableName(value = "user_person")
public class UserPersonEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
* id
*/
@TableField(value = "registerId")
private Long registerId;
/**
* id
*/
@TableField(value = "companyId")
private Long companyId;
/**
*
*/
@TableField(value = "userName")
private String userName;
/**
*
*/
@TableField(value = "`password`")
private String password;
/**
*
*/
@TableField(value = "`name`")
private String name;
/**
*
*/
@TableField(value = "tel")
private String tel;
/**
*
*/
@TableField(value = "mobile")
private String mobile;
/**
* qq
*/
@TableField(value = "qq")
private String qq;
/**
*
*/
@TableField(value = "weChat")
private String weChat;
/**
*
*/
@TableField(value = "email")
private String email;
@TableField(value = "createTime")
private Date createTime;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,114 @@
package com.glxp.api.entity.sup;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
@Data
@TableName(value = "user_register")
public class UserRegisterEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
* ID
*/
@TableField(value = "companyId")
private Long companyId;
/**
*
*/
@TableField(value = "realName")
private String realName;
/**
* ID
*/
@TableField(value = "userId")
private String userId;
/**
*
*/
@TableField(value = "mobile")
private String mobile;
/**
*
*/
@TableField(value = "email")
private String email;
/**
*
*/
@TableField(value = "companyName")
private String companyName;
/**
*
*/
@TableField(value = "creditNum")
private String creditNum;
/**
* 1,2,3,.4.
*/
@TableField(value = "bussinessStatus")
private String bussinessStatus;
/**
*
*/
@TableField(value = "registerTime")
private Date registerTime;
/**
*
*/
@TableField(value = "legalPerson")
private String legalPerson;
/**
*
*/
@TableField(value = "legalIdCard")
private String legalIdCard;
/**
*
*/
@TableField(value = "registerAddress")
private String registerAddress;
/**
*
*/
@TableField(value = "contactWay")
private String contactWay;
/**
*
*/
@TableField(value = "comments")
private String comments;
/**
* 0 /3 /1 /2
*/
@TableField(value = "checkStatus")
private String checkStatus;
/**
*
*/
@TableField(value = "checkTime")
private Date checkTime;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,8 @@
package com.glxp.api.service.sup;
import com.glxp.api.entity.sup.UserCertEntity;
import com.baomidou.mybatisplus.extension.service.IService;
public interface UserCertService extends IService<UserCertEntity>{
}

@ -0,0 +1,8 @@
package com.glxp.api.service.sup;
import com.glxp.api.entity.sup.UserCertSetEntity;
import com.baomidou.mybatisplus.extension.service.IService;
public interface UserCertSetService extends IService<UserCertSetEntity>{
}

@ -0,0 +1,8 @@
package com.glxp.api.service.sup;
import com.glxp.api.entity.sup.UserCheckEntity;
import com.baomidou.mybatisplus.extension.service.IService;
public interface UserCheckService extends IService<UserCheckEntity>{
}

@ -0,0 +1,8 @@
package com.glxp.api.service.sup;
import com.glxp.api.entity.sup.UserPersonEntity;
import com.baomidou.mybatisplus.extension.service.IService;
public interface UserPersonService extends IService<UserPersonEntity>{
}

@ -0,0 +1,8 @@
package com.glxp.api.service.sup;
import com.glxp.api.entity.sup.UserRegisterEntity;
import com.baomidou.mybatisplus.extension.service.IService;
public interface UserRegisterService extends IService<UserRegisterEntity>{
}

@ -0,0 +1,12 @@
package com.glxp.api.service.sup.impl;
import com.glxp.api.service.sup.UserCertService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.dao.sup.UserCertMapper;
import com.glxp.api.entity.sup.UserCertEntity;
@Service
public class UserCertServiceImpl extends ServiceImpl<UserCertMapper, UserCertEntity> implements UserCertService {
}

@ -0,0 +1,12 @@
package com.glxp.api.service.sup.impl;
import com.glxp.api.service.sup.UserCertSetService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.entity.sup.UserCertSetEntity;
import com.glxp.api.dao.sup.UserCertSetMapper;
@Service
public class UserCertSetServiceImpl extends ServiceImpl<UserCertSetMapper, UserCertSetEntity> implements UserCertSetService {
}

@ -0,0 +1,12 @@
package com.glxp.api.service.sup.impl;
import com.glxp.api.service.sup.UserCheckService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.entity.sup.UserCheckEntity;
import com.glxp.api.dao.sup.UserCheckMapper;
@Service
public class UserCheckServiceImpl extends ServiceImpl<UserCheckMapper, UserCheckEntity> implements UserCheckService {
}

@ -0,0 +1,12 @@
package com.glxp.api.service.sup.impl;
import com.glxp.api.service.sup.UserPersonService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.entity.sup.UserPersonEntity;
import com.glxp.api.dao.sup.UserPersonMapper;
@Service
public class UserPersonServiceImpl extends ServiceImpl<UserPersonMapper, UserPersonEntity> implements UserPersonService {
}

@ -0,0 +1,12 @@
package com.glxp.api.service.sup.impl;
import com.glxp.api.service.sup.UserRegisterService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.entity.sup.UserRegisterEntity;
import com.glxp.api.dao.sup.UserRegisterMapper;
@Service
public class UserRegisterServiceImpl extends ServiceImpl<UserRegisterMapper, UserRegisterEntity> implements UserRegisterService {
}

@ -0,0 +1,28 @@
<?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.glxp.api.dao.sup.UserCertMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.sup.UserCertEntity">
<!--@mbg.generated-->
<!--@Table user_cert-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="businessId" jdbcType="BIGINT" property="businessId" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="code" jdbcType="VARCHAR" property="code" />
<result column="filePath" jdbcType="LONGVARCHAR" property="filePath" />
<result column="validDate" jdbcType="TIMESTAMP" property="validDate" />
<result column="expireDate" jdbcType="TIMESTAMP" property="expireDate" />
<result column="checkStatus" jdbcType="CHAR" property="checkStatus" />
<result column="checkComment" jdbcType="VARCHAR" property="checkComment" />
<result column="status" jdbcType="CHAR" property="status" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, businessId, `name`, code, filePath, validDate, expireDate, checkStatus, checkComment,
`status`, remark, `createUser`, createTime, updateUser, updateTime
</sql>
</mapper>

@ -0,0 +1,20 @@
<?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.glxp.api.dao.sup.UserCertSetMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.sup.UserCertSetEntity">
<!--@mbg.generated-->
<!--@Table user_cert_set-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="isNeed" jdbcType="CHAR" property="isNeed" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, `name`, isNeed, remark, `createUser`, createTime, updateUser, updateTime
</sql>
</mapper>

@ -0,0 +1,18 @@
<?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.glxp.api.dao.sup.UserCheckMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.sup.UserCheckEntity">
<!--@mbg.generated-->
<!--@Table user_check-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="businessId" jdbcType="BIGINT" property="businessId" />
<result column="checkResult" jdbcType="VARCHAR" property="checkResult" />
<result column="resultExplain" jdbcType="VARCHAR" property="resultExplain" />
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, businessId, checkResult, resultExplain, `createUser`, createTime
</sql>
</mapper>

@ -0,0 +1,25 @@
<?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.glxp.api.dao.sup.UserPersonMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.sup.UserPersonEntity">
<!--@mbg.generated-->
<!--@Table user_person-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="registerId" jdbcType="BIGINT" property="registerId" />
<result column="companyId" jdbcType="BIGINT" property="companyId" />
<result column="userName" jdbcType="VARCHAR" property="userName" />
<result column="password" jdbcType="VARCHAR" property="password" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="tel" jdbcType="VARCHAR" property="tel" />
<result column="mobile" jdbcType="VARCHAR" property="mobile" />
<result column="qq" jdbcType="VARCHAR" property="qq" />
<result column="weChat" jdbcType="VARCHAR" property="weChat" />
<result column="email" jdbcType="VARCHAR" property="email" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, registerId, companyId, userName, `password`, `name`, tel, mobile, qq, weChat,
email, createTime
</sql>
</mapper>

@ -0,0 +1,31 @@
<?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.glxp.api.dao.sup.UserRegisterMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.sup.UserRegisterEntity">
<!--@mbg.generated-->
<!--@Table user_register-->
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="companyId" jdbcType="BIGINT" property="companyId"/>
<result column="realName" jdbcType="VARCHAR" property="realName"/>
<result column="userId" jdbcType="VARCHAR" property="userId"/>
<result column="mobile" jdbcType="VARCHAR" property="mobile"/>
<result column="email" jdbcType="VARCHAR" property="email"/>
<result column="companyName" jdbcType="VARCHAR" property="companyName"/>
<result column="creditNum" jdbcType="VARCHAR" property="creditNum"/>
<result column="bussinessStatus" jdbcType="CHAR" property="bussinessStatus"/>
<result column="registerTime" jdbcType="TIMESTAMP" property="registerTime"/>
<result column="legalPerson" jdbcType="VARCHAR" property="legalPerson"/>
<result column="legalIdCard" jdbcType="VARCHAR" property="legalIdCard"/>
<result column="registerAddress" jdbcType="VARCHAR" property="registerAddress"/>
<result column="contactWay" jdbcType="VARCHAR" property="contactWay"/>
<result column="comments" jdbcType="VARCHAR" property="comments"/>
<result column="checkStatus" jdbcType="CHAR" property="checkStatus"/>
<result column="checkTime" jdbcType="TIMESTAMP" property="checkTime"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, companyId, realName, userId, mobile, email, companyName, creditNum, bussinessStatus,
registerTime, legalPerson, legalIdCard, registerAddress, contactWay, comments, checkStatus,
checkTime
</sql>
</mapper>
Loading…
Cancel
Save