添加注册审核相关操作方法
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,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…
Reference in New Issue