南靖相关修改

dtxyy
anthonywj 9 months ago
parent 1bb784e8a3
commit eb96a965ad

@ -82,6 +82,11 @@
<version>19.18.0.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>cn.easyproject</groupId>
<artifactId>orai18n</artifactId>
<version>12.1.0.2.0</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>

@ -0,0 +1,51 @@
package com.glxp.mipsdl.controller;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.glxp.mipsdl.client.ClientProcessor;
import com.glxp.mipsdl.dao.basic.BasicBussinessTypeDao;
import com.glxp.mipsdl.entity.basic.BasicBussinessTypeEntity;
import com.glxp.mipsdl.entity.njxyy.BasicCorpEntity;
import com.glxp.mipsdl.req.base.UdiwmsQueryUdiInvProductsRequest;
import com.glxp.mipsdl.res.BaseResponse;
import com.glxp.mipsdl.thirddao.njxyy.TestDataMapper;
import com.glxp.mipsdl.util.ResultVOUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.List;
@Slf4j
@RestController
public class TestController {
@Resource
TestDataMapper testDataMapper;
@Resource
BasicBussinessTypeDao bussinessTypeDao;
@GetMapping("/test/nj")
public BaseResponse filterInv() {
for (int i = 0; i < 100000; i++) {
List<BasicCorpEntity> data = testDataMapper.selectList(new QueryWrapper<BasicCorpEntity>().last("limit 10"));
log.info(i+"");
}
return ResultVOUtils.success();
}
@GetMapping("/test/ct")
public BaseResponse filterCt() {
for (int i = 0; i < 100000; i++) {
List<BasicBussinessTypeEntity> data = bussinessTypeDao.selectList(new QueryWrapper<BasicBussinessTypeEntity>());
log.info(i+"");
}
return ResultVOUtils.success();
}
}

@ -0,0 +1,146 @@
package com.glxp.mipsdl.entity.njxyy;
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 lombok.Data;
import java.util.Date;
/**
*
*/
@Data
@TableName(value = "basic_corp")
public class BasicCorpEntity {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
*
*/
@TableField(value = "erpId")
private String erpId;
/**
*
*/
@TableField(value = "`name`")
private String name;
/**
*
*/
@TableField(value = "spell")
private String spell;
/**
*
*/
@TableField(value = "addr")
private String addr;
/**
*
*/
@TableField(value = "`status`")
private Integer status;
/**
*
*/
@TableField(value = "`type`")
private String type;
/**
*
*/
@TableField(value = "contact")
private String contact;
/**
*
*/
@TableField(value = "mobile")
private String mobile;
@TableField(value = "creditNo")
private String creditNo;
/**
* ID
*/
@TableField(value = "thirdId")
private String thirdId;
@TableField(value = "thirdId1")
private String thirdId1;
@TableField(value = "thirdId2")
private String thirdId2;
@TableField(value = "thirdId3")
private String thirdId3;
@TableField(value = "thirdId4")
private String thirdId4;
@TableField(value = "thirdName")
private String thirdName;
@TableField(value = "thirdName1")
private String thirdName1;
@TableField(value = "thirdName2")
private String thirdName2;
@TableField(value = "thirdName3")
private String thirdName3;
@TableField(value = "thirdName4")
private String thirdName4;
/**
* 1.23,4.;5.
*/
@TableField(value = "corpType")
private Integer corpType;
/**
* 1.2.
*/
@TableField(value = "outType")
private Integer outType;
/**
*
*/
@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;
}

@ -0,0 +1,14 @@
package com.glxp.mipsdl.thirddao.njxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.njxyy.BasicCorpEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
@DS("njsql")
public interface TestDataMapper extends BaseMapper<BasicCorpEntity> {
}

@ -9,4 +9,6 @@ import org.apache.ibatis.annotations.Mapper;
@Mapper
@DS("njsql")
public interface ThrSickerMapper extends BaseMapper<SickerEntity> {
}

@ -9,10 +9,6 @@ spring:
username: root
password: 123456
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
hikari:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10
njsql:
# jdbc-url: jdbc:oracle:thin:@192.168.10.8:1521/njxyy
# username: SD_UDIJK
@ -22,9 +18,16 @@ spring:
username: root
password: 123456
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
# thirdSql:
# url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_wms_pt?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
# username: root
# password: 123456
# driver-class-name: com.p6spy.engine.spy.P6SpyDriver
# thirdSql:
# url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_wms_pt?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
# username: root
# password: 123456
# driver-class-name: com.p6spy.engine.spy.P6SpyDriver
hikari:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10
hikari:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10

@ -7,15 +7,19 @@ spring:
master:
url: jdbc:mysql://127.0.0.1:3306/udi_wms?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: GLxp@6066
password: Glxp@6066
driver-class-name: com.mysql.cj.jdbc.Driver
hikari:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10
njsql:
jdbc-url: jdbc:oracle:thin:@192.168.10.8:1521/njxyy
url: jdbc:oracle:thin:@192.168.10.8:1521/njxyy
username: SD_UDIJK
password: SD_UDIJK
driver-class-name: oracle.jdbc.driver.OracleDrive
driver-class-name: oracle.jdbc.driver.OracleDriver
hikari:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10
hikari:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10
UDIWMS_IP: http://127.0.0.1:9991

@ -1,6 +1,6 @@
spring:
profiles:
active: dev
active: pro
servlet:
multipart:
max-file-size: 100MB

Loading…
Cancel
Save