From 954927ca73d245f1b781dd990016e65e81ed20b8 Mon Sep 17 00:00:00 2001 From: zane Date: Tue, 3 Sep 2024 17:42:39 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8D=AF=E5=93=81=E8=A7=86=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/ctqyy/VInsurNationGoodsReturn.java | 82 +++++++++++++++++++ .../entity/ctqyy/VYpzsPresInfoReturn.java | 61 ++++++++++++++ .../ctqyy/VInsurNationGoodsReturnMapper.java | 9 ++ .../ctqyy/VYpzsPresInfoReturnMapper.java | 9 ++ .../mapper/other/ctqyy/PresInfoMapper.xml | 5 -- .../ctqyy/VInsurNationGoodsReturnMapper.xml | 38 +++++++++ .../other/ctqyy/VYpzsPresInfoReturnMapper.xml | 30 +++++++ 7 files changed, 229 insertions(+), 5 deletions(-) create mode 100644 src/main/java/com/glxp/mipsdl/entity/ctqyy/VInsurNationGoodsReturn.java create mode 100644 src/main/java/com/glxp/mipsdl/entity/ctqyy/VYpzsPresInfoReturn.java create mode 100644 src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VInsurNationGoodsReturnMapper.java create mode 100644 src/main/java/com/glxp/mipsdl/thirddao/ctqyy/VYpzsPresInfoReturnMapper.java delete mode 100644 src/main/resources/mybatis/mapper/other/ctqyy/PresInfoMapper.xml create mode 100644 src/main/resources/mybatis/mapper/other/ctqyy/VInsurNationGoodsReturnMapper.xml create mode 100644 src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoReturnMapper.xml 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/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/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/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