parent
c7d891154f
commit
f15f5e6eaf
@ -0,0 +1,7 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.BasicCorpEntity;
|
||||
|
||||
public interface BasicCorpDao extends BaseMapper<BasicCorpEntity> {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.BasicCorpsExportLogEntity;
|
||||
|
||||
public interface BasicCorpsExportLogDao extends BaseMapper<BasicCorpsExportLogEntity> {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.BasicCorpsImportDetailEntity;
|
||||
|
||||
public interface BasicCorpsImportDetailDao extends BaseMapper<BasicCorpsImportDetailEntity> {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.BasicCorpsImportLogEntity;
|
||||
|
||||
public interface BasicCorpsImportLogDao extends BaseMapper<BasicCorpsImportLogEntity> {
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
package com.glxp.api.entity.basic;
|
||||
|
||||
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.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName(value = "basic_corps_import_log")
|
||||
public class BasicCorpsImportLogEntity {
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
private Integer id;
|
||||
|
||||
@TableField(value = "genKey")
|
||||
private String genKey;
|
||||
|
||||
@TableField(value = "`status`")
|
||||
private String status;
|
||||
|
||||
@TableField(value = "fromType")
|
||||
private String fromType;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField(value = "`createUser`")
|
||||
private String createUser;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(value = "createTime")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@TableField(value = "updateUser")
|
||||
private String updateUser;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(value = "updateTime")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@TableField(value = "remark")
|
||||
private String remark;
|
||||
|
||||
public static final String COL_ID = "id";
|
||||
|
||||
public static final String COL_GENKEY = "genKey";
|
||||
|
||||
public static final String COL_STATUS = "status";
|
||||
|
||||
public static final String COL_FROMTYPE = "fromType";
|
||||
|
||||
public static final String COL_CREATEUSER = "createUser";
|
||||
|
||||
public static final String COL_CREATETIME = "createTime";
|
||||
|
||||
public static final String COL_UPDATEUSER = "updateUser";
|
||||
|
||||
public static final String COL_UPDATETIME = "updateTime";
|
||||
|
||||
public static final String COL_REMARK = "remark";
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
<?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.basic.BasicCorpDao">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.BasicCorpEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table basic_corp-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="erpId" jdbcType="VARCHAR" property="erpId" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="spell" jdbcType="VARCHAR" property="spell" />
|
||||
<result column="addr" jdbcType="VARCHAR" property="addr" />
|
||||
<result column="status" jdbcType="VARCHAR" property="status" />
|
||||
<result column="type" jdbcType="VARCHAR" property="type" />
|
||||
<result column="contact" jdbcType="VARCHAR" property="contact" />
|
||||
<result column="mobile" jdbcType="VARCHAR" property="mobile" />
|
||||
<result column="creditNo" jdbcType="VARCHAR" property="creditNo" />
|
||||
<result column="thirdId" jdbcType="VARCHAR" property="thirdId" />
|
||||
<result column="thirdId1" jdbcType="VARCHAR" property="thirdId1" />
|
||||
<result column="thirdId2" jdbcType="VARCHAR" property="thirdId2" />
|
||||
<result column="thirdId3" jdbcType="VARCHAR" property="thirdId3" />
|
||||
<result column="thirdId4" jdbcType="VARCHAR" property="thirdId4" />
|
||||
<result column="thirdName" jdbcType="VARCHAR" property="thirdName" />
|
||||
<result column="thirdName1" jdbcType="VARCHAR" property="thirdName1" />
|
||||
<result column="thirdName2" jdbcType="VARCHAR" property="thirdName2" />
|
||||
<result column="thirdName3" jdbcType="VARCHAR" property="thirdName3" />
|
||||
<result column="thirdName4" jdbcType="VARCHAR" property="thirdName4" />
|
||||
<result column="corpType" jdbcType="TINYINT" property="corpType" />
|
||||
<result column="outType" jdbcType="TINYINT" property="outType" />
|
||||
<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" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, erpId, `name`, spell, addr, `status`, `type`, contact, mobile, creditNo, thirdId,
|
||||
thirdId1, thirdId2, thirdId3, thirdId4, thirdName, thirdName1, thirdName2, thirdName3,
|
||||
thirdName4, corpType, outType, `createUser`, createTime, updateUser, updateTime,
|
||||
remark
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,24 @@
|
||||
<?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.basic.BasicCorpsExportLogDao">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.BasicCorpsExportLogEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table basic_corps_export_log-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="genKey" jdbcType="VARCHAR" property="genKey" />
|
||||
<result column="status" jdbcType="INTEGER" property="status" />
|
||||
<result column="dlCount" jdbcType="INTEGER" property="dlCount" />
|
||||
<result column="filePath" jdbcType="VARCHAR" property="filePath" />
|
||||
<result column="type" jdbcType="INTEGER" property="type" />
|
||||
<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" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, genKey, `status`, dlCount, filePath, `type`, `createUser`, createTime, updateUser,
|
||||
updateTime, remark
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,42 @@
|
||||
<?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.basic.BasicCorpsImportDetailDao">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.BasicCorpsImportDetailEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table basic_corps_import_detail-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="thirdId" jdbcType="VARCHAR" property="thirdId" />
|
||||
<result column="erpId" jdbcType="VARCHAR" property="erpId" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="spell" jdbcType="VARCHAR" property="spell" />
|
||||
<result column="addr" jdbcType="VARCHAR" property="addr" />
|
||||
<result column="status" jdbcType="VARCHAR" property="status" />
|
||||
<result column="type" jdbcType="VARCHAR" property="type" />
|
||||
<result column="contact" jdbcType="VARCHAR" property="contact" />
|
||||
<result column="mobile" jdbcType="VARCHAR" property="mobile" />
|
||||
<result column="creditNo" jdbcType="VARCHAR" property="creditNo" />
|
||||
<result column="thirdId1" jdbcType="VARCHAR" property="thirdId1" />
|
||||
<result column="thirdId2" jdbcType="VARCHAR" property="thirdId2" />
|
||||
<result column="thirdId3" jdbcType="VARCHAR" property="thirdId3" />
|
||||
<result column="thirdId4" jdbcType="VARCHAR" property="thirdId4" />
|
||||
<result column="thirdName1" jdbcType="VARCHAR" property="thirdName1" />
|
||||
<result column="thirdName2" jdbcType="VARCHAR" property="thirdName2" />
|
||||
<result column="thirdName3" jdbcType="VARCHAR" property="thirdName3" />
|
||||
<result column="thirdName4" jdbcType="VARCHAR" property="thirdName4" />
|
||||
<result column="thirdName" jdbcType="VARCHAR" property="thirdName" />
|
||||
<result column="genKeyFk" jdbcType="VARCHAR" property="genKeyFk" />
|
||||
<result column="importStatus" jdbcType="INTEGER" property="importStatus" />
|
||||
<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" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, thirdId, erpId, `name`, spell, addr, `status`, `type`, contact, mobile, creditNo,
|
||||
thirdId1, thirdId2, thirdId3, thirdId4, thirdName1, thirdName2, thirdName3, thirdName4,
|
||||
thirdName, genKeyFk, importStatus, `createUser`, createTime, updateUser, updateTime,
|
||||
remark
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,22 @@
|
||||
<?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.basic.BasicCorpsImportLogDao">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.BasicCorpsImportLogEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table basic_corps_import_log-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="genKey" jdbcType="VARCHAR" property="genKey" />
|
||||
<result column="status" jdbcType="VARCHAR" property="status" />
|
||||
<result column="fromType" jdbcType="VARCHAR" property="fromType" />
|
||||
<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" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, genKey, `status`, fromType, `createUser`, createTime, updateUser, updateTime,
|
||||
remark
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue