1.调整第三方系统API表实体类字段

2.调整开发环境配置文件数据库驱动类
master
x_z 2 years ago
parent 49eacd739b
commit 780b7f5d15

@ -19,12 +19,6 @@ public class ThrSystemBusApiEntity {
@TableField(value = "`name`")
private String name;
/**
*
*/
@TableField(value = "thirdBuyName")
private String thirdBuyName;
/**
*
*/
@ -61,14 +55,21 @@ public class ThrSystemBusApiEntity {
@TableField(value = "filed4")
private String filed4;
@TableField(exist = false)
private Integer inoutType;
@TableField(exist = false)
private String thirdBuyName; //第三方系统单据类型名称
private static final long serialVersionUID = 1L;
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_THIRDBUYNAME = "thirdBuyName";
public static final String COL_THIRDBUYCODE = "thirdBuyCode";
public static final String COL_THIRDSYS = "thirdSys";

@ -1,7 +1,7 @@
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:p6spy:mysql://192.168.0.66:3364/udi_wms?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
url: jdbc:p6spy:mysql://192.168.0.66:3364/udi_wms_wmd?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: Glxp@6066
hikari:

@ -1,6 +1,6 @@
spring:
profiles:
active: pro
active: dev
server:
port: 9997

@ -7,7 +7,6 @@
<id column="id" jdbcType="INTEGER" property="id" />
<result column="code" jdbcType="VARCHAR" property="code" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="thirdBuyName" jdbcType="VARCHAR" property="thirdBuyName" />
<result column="thirdBuyCode" jdbcType="VARCHAR" property="thirdBuyCode" />
<result column="thirdSys" jdbcType="VARCHAR" property="thirdSys" />
<result column="url" jdbcType="VARCHAR" property="url" />
@ -21,7 +20,7 @@
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, code, `name`, thirdBuyName, thirdBuyCode, thirdSys, url, `type`, remark, filed,
id, code, `name`, thirdBuyCode, thirdSys, url, `type`, remark, filed,
filed1, filed2, filed3, filed4
</sql>
</mapper>
Loading…
Cancel
Save