Forráskód Böngészése

修复电梯出厂时间

udream-cxs 4 éve
szülő
commit
85e30d111a

+ 2 - 2
lift-business-service/src/main/resources/mapper/contract/ContractsMapper.xml

@@ -300,7 +300,7 @@
         c.given_user as givenUser,
 
         <!--实收金额-->
-        pay.work_money as workMoney
+        pay.work_money as workMoney,
 
         <!--未收-->
         pay.plan_money - pay.work_money as NoPayMoney,
@@ -372,7 +372,7 @@
         c.given_user as givenUser,
 
         <!--到账金额-->
-        erc.pay_money as workMoney
+        erc.pay_money as workMoney,
 
         <!--未收-->
         erc.cost_money - erc.pay_money as NoPayMoney,

+ 2 - 0
lift-common/src/main/java/cn/com/ty/lift/common/model/TimeMessage.java

@@ -34,6 +34,8 @@ public class TimeMessage implements Serializable {
     private Long createUserId;
     @TableField("create_time")
     private LocalDateTime createTime;
+    @TableField("statuz")
+    private Integer statuz;
 
     /**
      * @param pushToUserId 要推送的用户id

+ 3 - 0
lift-ud-service/src/main/java/cn/com/ty/lift/ud/chat/controller/model/LiftCaseReq.java

@@ -127,4 +127,7 @@ public class LiftCaseReq {
 
     @ApiModelProperty("视频")
     private String videoUrl;
+
+    @ApiModelProperty("电梯出厂日期")
+    private String productionDate;
 }

+ 6 - 0
lift-ud-service/src/main/java/cn/com/ty/lift/ud/chat/mapper/entity/LiftCaseEntity.java

@@ -158,6 +158,12 @@ public class LiftCaseEntity extends BaseEntity {
     @ApiModelProperty("是否已开发票")
     private Integer isInvoice;
 
+    /**
+     * 电梯出厂日期
+     */
+    @ApiModelProperty("电梯出厂日期")
+    private String productionDate;
+
     /**
      * 红包抵扣
      */