diff --git a/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java b/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java index e4209c5..c747d39 100644 --- a/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java +++ b/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java @@ -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 wrapper = new LambdaQueryWrapper(); + LambdaQueryWrapper 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 page = physicDictMapper.selectPage(new Page(udiwmsProductRequest.getPage(), udiwmsProductRequest.getLimit()), wrapper); - List 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 page = vYpzsPhysicDictMapper.selectPage(new Page(udiwmsProductRequest.getPage(), udiwmsProductRequest.getLimit()), wrapper); + List physicDictEntities = page.getRecords(); List 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 wrapper = new LambdaQueryWrapper<>(); + LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); //补充其他查询条件 - IPage page = planInfoMapper.selectPage(new Page(udiwmsThrOrderRequest.getPage(), udiwmsThrOrderRequest.getLimit()), wrapper); - List planInfoEntities = page.getRecords(); + IPage page = vYpzsPlanInfoMapper.selectPage(new Page(udiwmsThrOrderRequest.getPage(), udiwmsThrOrderRequest.getLimit()), wrapper); + List planInfoEntities = page.getRecords(); List thrOrderResponses = null; if (CollUtil.isNotEmpty(planInfoEntities)) { //数据处理以thr_order,thr_order_detail 主子返回 diff --git a/src/main/java/com/glxp/mipsdl/entity/ctqyy/PhysicDictEntity.java b/src/main/java/com/glxp/mipsdl/entity/ctqyy/PhysicDictEntity.java deleted file mode 100644 index b6d5b11..0000000 --- a/src/main/java/com/glxp/mipsdl/entity/ctqyy/PhysicDictEntity.java +++ /dev/null @@ -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; - -} diff --git a/src/main/java/com/glxp/mipsdl/entity/ctqyy/PlanInfoEntity.java b/src/main/java/com/glxp/mipsdl/entity/ctqyy/PlanInfoEntity.java deleted file mode 100644 index a0de2cb..0000000 --- a/src/main/java/com/glxp/mipsdl/entity/ctqyy/PlanInfoEntity.java +++ /dev/null @@ -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; - - -} diff --git a/src/main/java/com/glxp/mipsdl/entity/ctqyy/VInsurNationGoodsReturn.java b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VInsurNationGoodsReturn.java new file mode 100644 index 0000000..85ab451 --- /dev/null +++ b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VInsurNationGoodsReturn.java @@ -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; +} diff --git a/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPhysicDict.java b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPhysicDict.java new file mode 100644 index 0000000..6becbe7 --- /dev/null +++ b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPhysicDict.java @@ -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; + +} diff --git a/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPlanInfo.java b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPlanInfo.java new file mode 100644 index 0000000..899fbee --- /dev/null +++ b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPlanInfo.java @@ -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; + + +} diff --git a/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPresInfoReturn.java b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPresInfoReturn.java new file mode 100644 index 0000000..b32fdf1 --- /dev/null +++ b/src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPresInfoReturn.java @@ -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; +} diff --git a/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VInsurNationGoodsReturnMapper.java b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VInsurNationGoodsReturnMapper.java new file mode 100644 index 0000000..b129906 --- /dev/null +++ b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VInsurNationGoodsReturnMapper.java @@ -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 { +} \ No newline at end of file diff --git a/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/PhysicDictMapper.java b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPhysicDictMapper.java similarity index 52% rename from src/main/java/com/glxp/mipsdl/thirddao/ctqyy/PhysicDictMapper.java rename to src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPhysicDictMapper.java index 9f6f9de..2f53296 100644 --- a/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/PhysicDictMapper.java +++ b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPhysicDictMapper.java @@ -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 { +public interface VYpzsPhysicDictMapper extends BaseMapper { } diff --git a/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/PlanInfoMapper.java b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPlanInfoMapper.java similarity index 64% rename from src/main/java/com/glxp/mipsdl/thirddao/ctqyy/PlanInfoMapper.java rename to src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPlanInfoMapper.java index 2f93e1d..3db688c 100644 --- a/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/PlanInfoMapper.java +++ b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPlanInfoMapper.java @@ -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 { +public interface VYpzsPlanInfoMapper extends BaseMapper { } diff --git a/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPresInfoReturnMapper.java b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPresInfoReturnMapper.java new file mode 100644 index 0000000..7e7020f --- /dev/null +++ b/src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPresInfoReturnMapper.java @@ -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 { +} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/other/ctqyy/PresInfoMapper.xml b/src/main/resources/mybatis/mapper/other/ctqyy/PresInfoMapper.xml deleted file mode 100644 index f31f04a..0000000 --- a/src/main/resources/mybatis/mapper/other/ctqyy/PresInfoMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/main/resources/mybatis/mapper/other/ctqyy/VInsurNationGoodsReturnMapper.xml b/src/main/resources/mybatis/mapper/other/ctqyy/VInsurNationGoodsReturnMapper.xml new file mode 100644 index 0000000..0841837 --- /dev/null +++ b/src/main/resources/mybatis/mapper/other/ctqyy/VInsurNationGoodsReturnMapper.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/other/ctqyy/PlanInfoMapper.xml b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPhysicDictMapper.xml similarity index 68% rename from src/main/resources/mybatis/mapper/other/ctqyy/PlanInfoMapper.xml rename to src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPhysicDictMapper.xml index b7624e7..b935c02 100644 --- a/src/main/resources/mybatis/mapper/other/ctqyy/PlanInfoMapper.xml +++ b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPhysicDictMapper.xml @@ -1,5 +1,5 @@ - + diff --git a/src/main/resources/mybatis/mapper/other/ctqyy/PhysicDictMapper.xml b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPlanInfoMapper.xml similarity index 68% rename from src/main/resources/mybatis/mapper/other/ctqyy/PhysicDictMapper.xml rename to src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPlanInfoMapper.xml index 1d91d7e..2c1f247 100644 --- a/src/main/resources/mybatis/mapper/other/ctqyy/PhysicDictMapper.xml +++ b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPlanInfoMapper.xml @@ -1,5 +1,5 @@ - + diff --git a/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoReturnMapper.xml b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoReturnMapper.xml new file mode 100644 index 0000000..7cf60f3 --- /dev/null +++ b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoReturnMapper.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file