Merge remote-tracking branch 'origin/ctyxyb' into ctyxyb

scpwxyy
yewj 7 months ago
commit 89b9d467fa

@ -53,8 +53,8 @@ import com.glxp.mipsdl.service.order.OrderUploadLogService;
import com.glxp.mipsdl.service.system.SysParamConfigService;
import com.glxp.mipsdl.service.thrsys.ThrCorpService;
import com.glxp.mipsdl.service.thrsys.ThrSystemDetailService;
import com.glxp.mipsdl.thirddao.ctqyy.PhysicDictMapper;
import com.glxp.mipsdl.thirddao.ctqyy.PlanInfoMapper;
import com.glxp.mipsdl.thirddao.ctqyy.VYpzsPhysicDictMapper;
import com.glxp.mipsdl.thirddao.ctqyy.VYpzsPlanInfoMapper;
import com.glxp.mipsdl.thirddao.ctqyy.VYpzsPresInfoMapper;
import com.glxp.mipsdl.util.*;
import lombok.extern.slf4j.Slf4j;
@ -119,11 +119,11 @@ public class CtqyyClient extends CommonHttpClient {
@Resource
private OrderUploadLogService orderUploadLogService;
@Resource
private PhysicDictMapper physicDictMapper;
private VYpzsPhysicDictMapper vYpzsPhysicDictMapper;
@Resource
VYpzsPresInfoMapper vYpzsPresInfoMapper;
private VYpzsPresInfoMapper vYpzsPresInfoMapper;
@Resource
private PlanInfoMapper planInfoMapper;
private VYpzsPlanInfoMapper vYpzsPlanInfoMapper;
/**
@ -236,23 +236,23 @@ public class CtqyyClient extends CommonHttpClient {
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
}
} else if (udiwmsProductRequest.getProductType().equals(Constants.PRODUCT_TYPE_DRUG)) {
LambdaQueryWrapper<PhysicDictEntity> wrapper = new LambdaQueryWrapper();
LambdaQueryWrapper<VYpzsPhysicDict> wrapper = new LambdaQueryWrapper();
//补充其他查询条件
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getCode()), PhysicDictEntity::getPhysicCode, udiwmsProductRequest.getCode());
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getName()), PhysicDictEntity::getPhysicName, udiwmsProductRequest.getName());
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getRegisterNo()), PhysicDictEntity::getPhysicNo, udiwmsProductRequest.getRegisterNo());
IPage<PhysicDictEntity> page = physicDictMapper.selectPage(new Page<PhysicDictEntity>(udiwmsProductRequest.getPage(), udiwmsProductRequest.getLimit()), wrapper);
List<PhysicDictEntity> physicDictEntities = page.getRecords();
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getCode()), VYpzsPhysicDict::getPHYSIC_CODE, udiwmsProductRequest.getCode());
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getName()), VYpzsPhysicDict::getPHYSIC_NAME, udiwmsProductRequest.getName());
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getRegisterNo()), VYpzsPhysicDict::getPHYSIC_NO, udiwmsProductRequest.getRegisterNo());
IPage<VYpzsPhysicDict> page = vYpzsPhysicDictMapper.selectPage(new Page<VYpzsPhysicDict>(udiwmsProductRequest.getPage(), udiwmsProductRequest.getLimit()), wrapper);
List<VYpzsPhysicDict> physicDictEntities = page.getRecords();
List<ThrProductsEntity> thrProductsEntityList = null;
if (CollUtil.isNotEmpty(physicDictEntities)) {
//数据处理以thr_products 返回
thrProductsEntityList = physicDictEntities.stream().map(dict -> {
ThrProductsEntity products = new ThrProductsEntity();
products.setCode(dict.getPhysicCode());
products.setName(dict.getPhysicName());
products.setMeasname(dict.getPhysicUnit());
products.setSpec(dict.getPhysicSpec());
products.setRegisterNo(dict.getPhysicNo());
products.setCode(dict.getPHYSIC_CODE());
products.setName(dict.getPHYSIC_NAME());
products.setMeasname(dict.getPHYSIC_UNIT());
products.setSpec(dict.getPHYSIC_SPEC());
products.setRegisterNo(dict.getPHYSIC_NO());
products.setProductType(2);
return products;
}).collect(Collectors.toList());
@ -1429,10 +1429,10 @@ public class CtqyyClient extends CommonHttpClient {
*/
@Override
public BaseResponse getThrOrders(UdiwmsThrOrderRequest udiwmsThrOrderRequest) {
LambdaQueryWrapper<PlanInfoEntity> wrapper = new LambdaQueryWrapper<>();
LambdaQueryWrapper<VYpzsPlanInfo> wrapper = new LambdaQueryWrapper<>();
//补充其他查询条件
IPage<PlanInfoEntity> page = planInfoMapper.selectPage(new Page<PlanInfoEntity>(udiwmsThrOrderRequest.getPage(), udiwmsThrOrderRequest.getLimit()), wrapper);
List<PlanInfoEntity> planInfoEntities = page.getRecords();
IPage<VYpzsPlanInfo> page = vYpzsPlanInfoMapper.selectPage(new Page<VYpzsPlanInfo>(udiwmsThrOrderRequest.getPage(), udiwmsThrOrderRequest.getLimit()), wrapper);
List<VYpzsPlanInfo> planInfoEntities = page.getRecords();
List<ThrOrderResponse> thrOrderResponses = null;
if (CollUtil.isNotEmpty(planInfoEntities)) {
//数据处理以thr_orderthr_order_detail 主子返回

@ -1,33 +0,0 @@
package com.glxp.mipsdl.entity.ctqyy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "V_YPZS_PHYSIC_DICT")
public class PhysicDictEntity {
@TableField("PHYSIC_CODE")
private String physicCode;
@TableField("PHYSIC_NO")
private String physicNo;
@TableField("PHYSIC_NAME")
private String physicName;
@TableField("PHYSIC_SPEC")
private String physicSpec;
@TableField("PHYSIC_UNIT")
private String physicUnit;
@TableField("PACK_UNIT")
private String packUnit;
@TableField("PACK_SPEC")
private String packSpec;
@TableField("PACK_UNTUCK")
private String packUntuck;
@TableField("PACK_UNTUCK_RESI")
private String packUntuckResi;
@TableField("COUNTRY_CODE")
private String countryCode;
}

@ -1,52 +0,0 @@
package com.glxp.mipsdl.entity.ctqyy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "V_YPZS_PLAN_INFO")
public class PlanInfoEntity {
@TableField("CGDBH")
private String cgdbh;
@TableField("YPBM")
private String ypbm;
@TableField("YPMC")
private String ypmc;
@TableField("JXMC")
private String jxmc;
@TableField("GGMC")
private String ggmc;
@TableField("BZDW")
private String bzdw;
@TableField("ZXSYDW")
private String zxsydw;
@TableField("ZHB")
private String zhb;
@TableField("SCQYBM")
private String scqybm;
@TableField("SCQYMC")
private String scqymc;
@TableField("YKBM")
private String ykbm;
@TableField("YKMC")
private String ykmc;
@TableField("ZBJ")
private String zbj;
@TableField("GJJ")
private String gjj;
@TableField("GMSL")
private String gmsl;
@TableField("PSQYBM")
private String psqybm;
@TableField("PSQYMC")
private String psqymc;
@TableField("BZ")
private String bz;
@TableField("TPJG")
private String tpjg;
}

@ -0,0 +1,82 @@
package com.glxp.mipsdl.entity.ctqyy;
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.math.BigDecimal;
import java.util.Date;
import lombok.Data;
@Data
@TableName(value = "V_INSUR_NATION_GOODS_RETURN")
public class VInsurNationGoodsReturn {
@TableField(value = "MED_LIST_CODG")
private String MED_LIST_CODG;
@TableField(value = "FIXMEDINS_HILIST_ID")
private Integer FIXMEDINS_HILIST_ID;
@TableField(value = "FIXMEDINS_HILIST_NAME")
private String FIXMEDINS_HILIST_NAME;
@TableField(value = "FIXMEDINS_BCHNO")
private Integer FIXMEDINS_BCHNO;
@TableField(value = "SETL_ID")
private Integer SETL_ID;
@TableField(value = "PSN_NO")
private Integer PSN_NO;
@TableField(value = "PSN_CERT_TYPE")
private String PSN_CERT_TYPE;
@TableField(value = "CERTNO")
private String CERTNO;
@TableField(value = "PSN_NAME")
private String PSN_NAME;
@TableField(value = "MANU_LOTNUM")
private String MANU_LOTNUM;
@TableField(value = "MANU_DATE")
private Date MANU_DATE;
@TableField(value = "EXPY_END")
private Date EXPY_END;
@TableField(value = "RX_FLAG")
private String RX_FLAG;
@TableField(value = "TRDN_FLAG")
private String TRDN_FLAG;
@TableField(value = "FINL_TRNS_PRIC")
private BigDecimal FINL_TRNS_PRIC;
@TableField(value = "SEL_RETN_CNT")
private Integer SEL_RETN_CNT;
@TableField(value = "SEL_RETN_TIME")
private Date SEL_RETN_TIME;
@TableField(value = "SEL_RETN_OPTER_NAME")
private String SEL_RETN_OPTER_NAME;
@TableField(value = "MEMO")
private String MEMO;
@TableField(value = "MEDINS_PROL_SEL_NO")
private String MEDINS_PROL_SEL_NO;
@TableField(value = "DRUGTRACINFO")
private String DRUGTRACINFO;
@TableField(value = "SETTLE_NO")
private String SETTLE_NO;
@TableField(value = "SICK_ID")
private String SICK_ID;
}

@ -0,0 +1,42 @@
package com.glxp.mipsdl.entity.ctqyy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "V_YPZS_PHYSIC_DICT")
public class VYpzsPhysicDict {
@TableField(value = "PHYSIC_CODE")
private String PHYSIC_CODE;
@TableField(value = "PHYSIC_NO")
private String PHYSIC_NO;
@TableField(value = "PHYSIC_NAME")
private String PHYSIC_NAME;
@TableField(value = "PHYSIC_SPEC")
private String PHYSIC_SPEC;
@TableField(value = "PHYSIC_UNIT")
private String PHYSIC_UNIT;
@TableField(value = "PACK_UNIT")
private String PACK_UNIT;
@TableField(value = "PACK_SPEC")
private String PACK_SPEC;
@TableField(value = "PACK_UNTUCK")
private String PACK_UNTUCK;
@TableField(value = "PACK_UNTUCK_RESI")
private String PACK_UNTUCK_RESI;
@TableField(value = "COUNTRY_CODE")
private String COUNTRY_CODE;
}

@ -0,0 +1,70 @@
package com.glxp.mipsdl.entity.ctqyy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "V_YPZS_PLAN_INFO")
public class VYpzsPlanInfo {
@TableField(value = "CGDBH")
private String CGDBH;
@TableField(value = "YPBM")
private String YPBM;
@TableField(value = "YPMC")
private String YPMC;
@TableField(value = "JXMC")
private String JXMC;
@TableField(value = "GGMC")
private String GGMC;
@TableField(value = "BZDW")
private String BZDW;
@TableField(value = "ZXSYDW")
private String ZXSYDW;
@TableField(value = "ZHB")
private String ZHB;
@TableField(value = "SCQYBM")
private String SCQYBM;
@TableField(value = "SCQYMC")
private String SCQYMC;
@TableField(value = "YKBM")
private String YKBM;
@TableField(value = "YKMC")
private String YKMC;
@TableField(value = "ZBJ")
private String ZBJ;
@TableField(value = "GJJ")
private String GJJ;
@TableField(value = "GMSL")
private String GMSL;
@TableField(value = "PSQYBM")
private String PSQYBM;
@TableField(value = "PSQYMC")
private String PSQYMC;
@TableField(value = "BZ")
private String BZ;
@TableField(value = "TPJG")
private String TPJG;
}

@ -0,0 +1,61 @@
package com.glxp.mipsdl.entity.ctqyy;
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.math.BigDecimal;
import java.util.Date;
import lombok.Data;
@Data
@TableName(value = "V_YPZS_PRES_INFO_RETURN")
public class VYpzsPresInfoReturn {
@TableField(value = "APPLY_NO")
private String APPLY_NO;
@TableField(value = "SICK_ID")
private String SICK_ID;
@TableField(value = "STORAGE_CODE")
private Integer STORAGE_CODE;
@TableField(value = "DEPT_NAME")
private String DEPT_NAME;
@TableField(value = "KEEP_BOOK_TIME")
private Date KEEP_BOOK_TIME;
@TableField(value = "KEEP_BOOK_OPERATOR")
private String KEEP_BOOK_OPERATOR;
@TableField(value = "SETTLE_NO")
private String SETTLE_NO;
@TableField(value = "PHYSIC_CODE")
private String PHYSIC_CODE;
@TableField(value = "PHYSIC_NAME")
private String PHYSIC_NAME;
@TableField(value = "PHYSIC_SPEC")
private String PHYSIC_SPEC;
@TableField(value = "QUANTITY")
private Integer QUANTITY;
@TableField(value = "PHYSIC_UNIT")
private String PHYSIC_UNIT;
@TableField(value = "PRICE")
private BigDecimal PRICE;
@TableField(value = "COST")
private BigDecimal COST;
@TableField(value = "BATCH_NUMBER")
private String BATCH_NUMBER;
@TableField(value = "FEE_SEQUENCE_NO")
private String FEE_SEQUENCE_NO;
}

@ -0,0 +1,9 @@
package com.glxp.mipsdl.thirddao.ctqyy;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.ctqyy.VInsurNationGoodsReturn;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface VInsurNationGoodsReturnMapper extends BaseMapper<VInsurNationGoodsReturn> {
}

@ -2,15 +2,12 @@ package com.glxp.mipsdl.thirddao.ctqyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.ctqyy.PhysicDictEntity;
import com.glxp.mipsdl.req.base.UdiwmsProductRequest;
import com.glxp.mipsdl.entity.ctqyy.VYpzsPhysicDict;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
@DS("ctqyySql")
public interface PhysicDictMapper extends BaseMapper<PhysicDictEntity> {
public interface VYpzsPhysicDictMapper extends BaseMapper<VYpzsPhysicDict> {
}

@ -2,12 +2,12 @@ package com.glxp.mipsdl.thirddao.ctqyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.ctqyy.PlanInfoEntity;
import com.glxp.mipsdl.entity.ctqyy.VYpzsPlanInfo;
import org.apache.ibatis.annotations.Mapper;
@Mapper
@DS("ctqyySql")
public interface PlanInfoMapper extends BaseMapper<PlanInfoEntity> {
public interface VYpzsPlanInfoMapper extends BaseMapper<VYpzsPlanInfo> {
}

@ -0,0 +1,9 @@
package com.glxp.mipsdl.thirddao.ctqyy;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.ctqyy.VYpzsPresInfoReturn;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface VYpzsPresInfoReturnMapper extends BaseMapper<VYpzsPresInfoReturn> {
}

@ -1,5 +0,0 @@
<?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.mipsdl.thirddao.ctqyy.PresInfoMapper">
</mapper>

@ -0,0 +1,38 @@
<?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.mipsdl.thirddao.ctqyy.VInsurNationGoodsReturnMapper">
<resultMap id="BaseResultMap" type="com.glxp.mipsdl.entity.ctqyy.VInsurNationGoodsReturn">
<!--@mbg.generated-->
<!--@Table v_insur_nation_goods_return-->
<result column="MED_LIST_CODG" jdbcType="VARCHAR" property="MED_LIST_CODG" />
<result column="FIXMEDINS_HILIST_ID" jdbcType="INTEGER" property="FIXMEDINS_HILIST_ID" />
<result column="FIXMEDINS_HILIST_NAME" jdbcType="VARCHAR" property="FIXMEDINS_HILIST_NAME" />
<result column="FIXMEDINS_BCHNO" jdbcType="INTEGER" property="FIXMEDINS_BCHNO" />
<result column="SETL_ID" jdbcType="INTEGER" property="SETL_ID" />
<result column="PSN_NO" jdbcType="INTEGER" property="PSN_NO" />
<result column="PSN_CERT_TYPE" jdbcType="VARCHAR" property="PSN_CERT_TYPE" />
<result column="CERTNO" jdbcType="VARCHAR" property="CERTNO" />
<result column="PSN_NAME" jdbcType="VARCHAR" property="PSN_NAME" />
<result column="MANU_LOTNUM" jdbcType="VARCHAR" property="MANU_LOTNUM" />
<result column="MANU_DATE" jdbcType="DATE" property="MANU_DATE" />
<result column="EXPY_END" jdbcType="DATE" property="EXPY_END" />
<result column="RX_FLAG" jdbcType="VARCHAR" property="RX_FLAG" />
<result column="TRDN_FLAG" jdbcType="VARCHAR" property="TRDN_FLAG" />
<result column="FINL_TRNS_PRIC" jdbcType="DECIMAL" property="FINL_TRNS_PRIC" />
<result column="SEL_RETN_CNT" jdbcType="INTEGER" property="SEL_RETN_CNT" />
<result column="SEL_RETN_TIME" jdbcType="DATE" property="SEL_RETN_TIME" />
<result column="SEL_RETN_OPTER_NAME" jdbcType="VARCHAR" property="SEL_RETN_OPTER_NAME" />
<result column="MEMO" jdbcType="VARCHAR" property="MEMO" />
<result column="MEDINS_PROL_SEL_NO" jdbcType="VARCHAR" property="MEDINS_PROL_SEL_NO" />
<result column="DRUGTRACINFO" jdbcType="VARCHAR" property="DRUGTRACINFO" />
<result column="SETTLE_NO" jdbcType="VARCHAR" property="SETTLE_NO" />
<result column="SICK_ID" jdbcType="VARCHAR" property="SICK_ID" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
MED_LIST_CODG, FIXMEDINS_HILIST_ID, FIXMEDINS_HILIST_NAME, FIXMEDINS_BCHNO, SETL_ID,
PSN_NO, PSN_CERT_TYPE, CERTNO, PSN_NAME, MANU_LOTNUM, MANU_DATE, EXPY_END, RX_FLAG,
TRDN_FLAG, FINL_TRNS_PRIC, SEL_RETN_CNT, SEL_RETN_TIME, SEL_RETN_OPTER_NAME, MEMO,
MEDINS_PROL_SEL_NO, DRUGTRACINFO, SETTLE_NO, SICK_ID
</sql>
</mapper>

@ -1,5 +1,5 @@
<?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.mipsdl.thirddao.ctqyy.PlanInfoMapper">
<mapper namespace="com.glxp.mipsdl.thirddao.ctqyy.VYpzsPhysicDictMapper">
</mapper>

@ -1,5 +1,5 @@
<?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.mipsdl.thirddao.ctqyy.PhysicDictMapper">
<mapper namespace="com.glxp.mipsdl.thirddao.ctqyy.VYpzsPlanInfoMapper">
</mapper>

@ -0,0 +1,30 @@
<?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.mipsdl.thirddao.ctqyy.VYpzsPresInfoReturnMapper">
<resultMap id="BaseResultMap" type="com.glxp.mipsdl.entity.ctqyy.VYpzsPresInfoReturn">
<!--@mbg.generated-->
<!--@Table v_ypzs_pres_info_return-->
<result column="APPLY_NO" jdbcType="VARCHAR" property="APPLY_NO" />
<result column="SICK_ID" jdbcType="VARCHAR" property="SICK_ID" />
<result column="STORAGE_CODE" jdbcType="INTEGER" property="STORAGE_CODE" />
<result column="DEPT_NAME" jdbcType="VARCHAR" property="DEPT_NAME" />
<result column="KEEP_BOOK_TIME" jdbcType="DATE" property="KEEP_BOOK_TIME" />
<result column="KEEP_BOOK_OPERATOR" jdbcType="VARCHAR" property="KEEP_BOOK_OPERATOR" />
<result column="SETTLE_NO" jdbcType="VARCHAR" property="SETTLE_NO" />
<result column="PHYSIC_CODE" jdbcType="VARCHAR" property="PHYSIC_CODE" />
<result column="PHYSIC_NAME" jdbcType="VARCHAR" property="PHYSIC_NAME" />
<result column="PHYSIC_SPEC" jdbcType="VARCHAR" property="PHYSIC_SPEC" />
<result column="QUANTITY" jdbcType="INTEGER" property="QUANTITY" />
<result column="PHYSIC_UNIT" jdbcType="VARCHAR" property="PHYSIC_UNIT" />
<result column="PRICE" jdbcType="DECIMAL" property="PRICE" />
<result column="COST" jdbcType="DECIMAL" property="COST" />
<result column="BATCH_NUMBER" jdbcType="VARCHAR" property="BATCH_NUMBER" />
<result column="FEE_SEQUENCE_NO" jdbcType="VARCHAR" property="FEE_SEQUENCE_NO" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
APPLY_NO, SICK_ID, STORAGE_CODE, DEPT_NAME, KEEP_BOOK_TIME, KEEP_BOOK_OPERATOR, SETTLE_NO,
PHYSIC_CODE, PHYSIC_NAME, PHYSIC_SPEC, QUANTITY, PHYSIC_UNIT, PRICE, COST, BATCH_NUMBER,
FEE_SEQUENCE_NO
</sql>
</mapper>
Loading…
Cancel
Save