parent
461c42ed70
commit
2826e138c0
@ -0,0 +1,7 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.thrsys.ThrProductsExportLogEntity;
|
||||
|
||||
public interface ThrProductsExportLogDao extends BaseMapper<ThrProductsExportLogEntity> {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.thrsys.ThrProductsImportDetailEntity;
|
||||
|
||||
public interface ThrProductsImportDetailDao extends BaseMapper<ThrProductsImportDetailEntity> {
|
||||
}
|
@ -0,0 +1,157 @@
|
||||
package com.glxp.api.entity.thrsys;
|
||||
|
||||
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 = "thr_products_import_detail")
|
||||
public class ThrProductsImportDetailEntity {
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
private Integer id;
|
||||
|
||||
@TableField(value = "code")
|
||||
private String code;
|
||||
|
||||
@TableField(value = "`name`")
|
||||
private String name;
|
||||
|
||||
@TableField(value = "measname")
|
||||
private String measname;
|
||||
|
||||
@TableField(value = "spec")
|
||||
private String spec;
|
||||
|
||||
@TableField(value = "registerNo")
|
||||
private String registerNo;
|
||||
|
||||
@TableField(value = "manufactory")
|
||||
private String manufactory;
|
||||
|
||||
@TableField(value = "thirdSysFk")
|
||||
private String thirdSysFk;
|
||||
|
||||
@TableField(value = "cplb")
|
||||
private String cplb;
|
||||
|
||||
@TableField(value = "flbm")
|
||||
private String flbm;
|
||||
|
||||
@TableField(value = "qxlb")
|
||||
private String qxlb;
|
||||
|
||||
@TableField(value = "ybbm")
|
||||
private String ybbm;
|
||||
|
||||
@TableField(value = "sptm")
|
||||
private String sptm;
|
||||
|
||||
@TableField(value = "tyshxydm")
|
||||
private String tyshxydm;
|
||||
|
||||
@TableField(value = "zczbhhzbapzbh")
|
||||
private String zczbhhzbapzbh;
|
||||
|
||||
@TableField(value = "ylqxzcrbarmc")
|
||||
private String ylqxzcrbarmc;
|
||||
|
||||
@TableField(value = "ylqxzcrbarywmc")
|
||||
private String ylqxzcrbarywmc;
|
||||
|
||||
@TableField(value = "cpms")
|
||||
private String cpms;
|
||||
|
||||
@TableField(value = "updateTime")
|
||||
private Date updateTime;
|
||||
|
||||
@TableField(value = "genKeyFk")
|
||||
private String genKeyFk;
|
||||
|
||||
@TableField(value = "supName")
|
||||
private String supName;
|
||||
|
||||
/**
|
||||
* 价格
|
||||
*/
|
||||
@TableField(value = "price")
|
||||
private String price;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField(value = "`createUser`")
|
||||
private String createUser;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(value = "createTime")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@TableField(value = "updateUser")
|
||||
private String updateUser;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@TableField(value = "remark")
|
||||
private String remark;
|
||||
|
||||
public static final String COL_ID = "id";
|
||||
|
||||
public static final String COL_CODE = "code";
|
||||
|
||||
public static final String COL_NAME = "name";
|
||||
|
||||
public static final String COL_MEASNAME = "measname";
|
||||
|
||||
public static final String COL_SPEC = "spec";
|
||||
|
||||
public static final String COL_REGISTERNO = "registerNo";
|
||||
|
||||
public static final String COL_MANUFACTORY = "manufactory";
|
||||
|
||||
public static final String COL_THIRDSYSFK = "thirdSysFk";
|
||||
|
||||
public static final String COL_CPLB = "cplb";
|
||||
|
||||
public static final String COL_FLBM = "flbm";
|
||||
|
||||
public static final String COL_QXLB = "qxlb";
|
||||
|
||||
public static final String COL_YBBM = "ybbm";
|
||||
|
||||
public static final String COL_SPTM = "sptm";
|
||||
|
||||
public static final String COL_TYSHXYDM = "tyshxydm";
|
||||
|
||||
public static final String COL_ZCZBHHZBAPZBH = "zczbhhzbapzbh";
|
||||
|
||||
public static final String COL_YLQXZCRBARMC = "ylqxzcrbarmc";
|
||||
|
||||
public static final String COL_YLQXZCRBARYWMC = "ylqxzcrbarywmc";
|
||||
|
||||
public static final String COL_CPMS = "cpms";
|
||||
|
||||
public static final String COL_UPDATETIME = "updateTime";
|
||||
|
||||
public static final String COL_GENKEYFK = "genKeyFk";
|
||||
|
||||
public static final String COL_SUPNAME = "supName";
|
||||
|
||||
public static final String COL_PRICE = "price";
|
||||
|
||||
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_REMARK = "remark";
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
package com.glxp.api.http.req;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 下载第三方单据单据类型请求参数
|
||||
*/
|
||||
@Data
|
||||
public class UdiwmsBusTypeRequest {
|
||||
|
||||
/**
|
||||
* 数据ID
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 页码
|
||||
*/
|
||||
private Integer page;
|
||||
|
||||
/**
|
||||
* 数据条数
|
||||
*/
|
||||
private Integer limit;
|
||||
|
||||
/**
|
||||
* 第三方系统标识
|
||||
*/
|
||||
private String thirdSys;
|
||||
|
||||
}
|
@ -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.ThrProductsExportLogDao">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.thrsys.ThrProductsExportLogEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table thr_products_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,40 @@
|
||||
<?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.ThrProductsImportDetailDao">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.thrsys.ThrProductsImportDetailEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table thr_products_import_detail-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="code" jdbcType="VARCHAR" property="code" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="measname" jdbcType="VARCHAR" property="measname" />
|
||||
<result column="spec" jdbcType="LONGVARCHAR" property="spec" />
|
||||
<result column="registerNo" jdbcType="VARCHAR" property="registerNo" />
|
||||
<result column="manufactory" jdbcType="VARCHAR" property="manufactory" />
|
||||
<result column="thirdSysFk" jdbcType="VARCHAR" property="thirdSysFk" />
|
||||
<result column="cplb" jdbcType="VARCHAR" property="cplb" />
|
||||
<result column="flbm" jdbcType="VARCHAR" property="flbm" />
|
||||
<result column="qxlb" jdbcType="VARCHAR" property="qxlb" />
|
||||
<result column="ybbm" jdbcType="VARCHAR" property="ybbm" />
|
||||
<result column="sptm" jdbcType="VARCHAR" property="sptm" />
|
||||
<result column="tyshxydm" jdbcType="VARCHAR" property="tyshxydm" />
|
||||
<result column="zczbhhzbapzbh" jdbcType="VARCHAR" property="zczbhhzbapzbh" />
|
||||
<result column="ylqxzcrbarmc" jdbcType="VARCHAR" property="ylqxzcrbarmc" />
|
||||
<result column="ylqxzcrbarywmc" jdbcType="VARCHAR" property="ylqxzcrbarywmc" />
|
||||
<result column="cpms" jdbcType="LONGVARCHAR" property="cpms" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="genKeyFk" jdbcType="VARCHAR" property="genKeyFk" />
|
||||
<result column="supName" jdbcType="VARCHAR" property="supName" />
|
||||
<result column="price" jdbcType="VARCHAR" property="price" />
|
||||
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, code, `name`, measname, spec, registerNo, manufactory, thirdSysFk, cplb, flbm,
|
||||
qxlb, ybbm, sptm, tyshxydm, zczbhhzbapzbh, ylqxzcrbarmc, ylqxzcrbarywmc, cpms, updateTime,
|
||||
genKeyFk, supName, price, `createUser`, createTime, updateUser, remark
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue