Pārlūkot izejas kodu

保管员类型修改

renyu 2 gadi atpakaļ
vecāks
revīzija
5f923ff932

+ 1 - 1
src/main/java/com/chinaitop/depot/fumigation/mapper/TFumigationAfterMapper.xml

@@ -760,7 +760,7 @@
760 760
     af.id,
761 761
     record.xzzydh fumigationId,
762 762
     record.house_id houseId,
763
-    record.cgxzfs fumigationType,
763
+    record.xzfs fumigationType,
764 764
     record.yjmc drugName,
765 765
     af.creater,
766 766
     af.create_time createTime

+ 7 - 7
src/main/java/com/chinaitop/depot/fumigation/mapper/TFumigationForrecordMapper.xml

@@ -60,7 +60,7 @@
60 60
     <result column="lqsj" property="lqsj" jdbcType="TIMESTAMP" />
61 61
     <result column="spr" property="spr" jdbcType="VARCHAR" />
62 62
     <result column="spsj" property="spsj" jdbcType="TIMESTAMP" />
63
-    <result column="bgy" property="bgy" jdbcType="VARCHAR" />
63
+    <result column="bgy" property="bgy" jdbcType="INTEGER" />
64 64
     <result column="xzrs" property="xzrs" jdbcType="INTEGER" />
65 65
     <result column="xzzhr" property="xzzhr" jdbcType="VARCHAR" />
66 66
     <result column="xzczry" property="xzczry" jdbcType="VARCHAR" />
@@ -212,7 +212,7 @@
212 212
       #{houseId,jdbcType=INTEGER}, #{state,jdbcType=INTEGER}, #{cfmc,jdbcType=VARCHAR},
213 213
       #{yjyxq,jdbcType=TIMESTAMP}, #{lqsl,jdbcType=DECIMAL}, #{sysl,jdbcType=DECIMAL},
214 214
       #{lqr,jdbcType=VARCHAR}, #{lqsj,jdbcType=TIMESTAMP}, #{spr,jdbcType=VARCHAR}, #{spsj,jdbcType=TIMESTAMP},
215
-      #{bgy,jdbcType=VARCHAR}, #{xzrs,jdbcType=INTEGER}, #{xzzhr,jdbcType=VARCHAR}, #{xzczry,jdbcType=VARCHAR},
215
+      #{bgy,jdbcType=INTEGER}, #{xzrs,jdbcType=INTEGER}, #{xzzhr,jdbcType=VARCHAR}, #{xzczry,jdbcType=VARCHAR},
216 216
       #{fhry,jdbcType=VARCHAR}, #{lyccdw,jdbcType=VARCHAR}, #{lyccdwfzr,jdbcType=VARCHAR},
217 217
       #{ylccdwlxdh,jdbcType=VARCHAR}, #{sqrq,jdbcType=TIMESTAMP}, #{xzzydd,jdbcType=VARCHAR},
218 218
        #{fzsycs,jdbcType=VARCHAR}, #{sqr,jdbcType=VARCHAR},#{xzfs,jdbcType=INTEGER})
@@ -601,7 +601,7 @@
601 601
         #{spsj,jdbcType=TIMESTAMP},
602 602
       </if>
603 603
       <if test="bgy != null" >
604
-        #{bgy,jdbcType=VARCHAR},
604
+        #{bgy,jdbcType=INTEGER},
605 605
       </if>
606 606
       <if test="xzrs != null" >
607 607
         #{xzrs,jdbcType=INTEGER},
@@ -816,7 +816,7 @@
816 816
         spsj = #{record.spsj,jdbcType=TIMESTAMP},
817 817
       </if>
818 818
       <if test="record.bgy != null" >
819
-        bgy = #{record.bgy,jdbcType=VARCHAR},
819
+        bgy = #{record.bgy,jdbcType=INTEGER},
820 820
       </if>
821 821
       <if test="record.xzrs != null" >
822 822
         xzrs = #{record.xzrs,jdbcType=INTEGER},
@@ -910,7 +910,7 @@
910 910
     lqsj = #{record.lqsj,jdbcType=TIMESTAMP},
911 911
     spr = #{record.spr,jdbcType=VARCHAR},
912 912
     spsj = #{record.spsj,jdbcType=TIMESTAMP},
913
-    bgy = #{record.bgy,jdbcType=VARCHAR},
913
+    bgy = #{record.bgy,jdbcType=INTEGER},
914 914
     xzrs = #{record.xzrs,jdbcType=INTEGER},
915 915
     xzzhr = #{record.xzzhr,jdbcType=VARCHAR},
916 916
     xzczry = #{record.xzczry,jdbcType=VARCHAR},
@@ -1099,7 +1099,7 @@
1099 1099
         spsj = #{spsj,jdbcType=TIMESTAMP},
1100 1100
       </if>
1101 1101
       <if test="bgy != null" >
1102
-        bgy = #{bgy,jdbcType=VARCHAR},
1102
+        bgy = #{bgy,jdbcType=INTEGER},
1103 1103
       </if>
1104 1104
       <if test="xzrs != null" >
1105 1105
         xzrs = #{xzrs,jdbcType=INTEGER},
@@ -1190,7 +1190,7 @@
1190 1190
       lqsj = #{lqsj,jdbcType=TIMESTAMP},
1191 1191
       spr = #{spr,jdbcType=VARCHAR},
1192 1192
       spsj = #{spsj,jdbcType=TIMESTAMP},
1193
-      bgy = #{bgy,jdbcType=VARCHAR},
1193
+      bgy = #{bgy,jdbcType=INTEGER},
1194 1194
       xzrs = #{xzrs,jdbcType=INTEGER},
1195 1195
       xzzhr = #{xzzhr,jdbcType=VARCHAR},
1196 1196
       xzczry = #{xzczry,jdbcType=VARCHAR},

+ 3 - 3
src/main/java/com/chinaitop/depot/fumigation/model/TFumigationForrecord.java

@@ -240,7 +240,7 @@ public class TFumigationForrecord {
240 240
     /**
241 241
      * 保管员
242 242
      */
243
-    private String bgy;
243
+    private Integer bgy;
244 244
 
245 245
     /**
246 246
      * 熏蒸人数
@@ -937,11 +937,11 @@ public class TFumigationForrecord {
937 937
         this.spsj = spsj;
938 938
     }
939 939
 
940
-    public String getBgy() {
940
+    public Integer getBgy() {
941 941
         return bgy;
942 942
     }
943 943
 
944
-    public void setBgy(String bgy) {
944
+    public void setBgy(Integer bgy) {
945 945
         this.bgy = bgy;
946 946
     }
947 947