Browse Source

添加相应字段

lingpeng.li 3 weeks ago
parent
commit
3fe5cbef2f

+ 24 - 0
zgztBus/jeecg-module-sbm/src/main/java/org/jeecg/modules/billet/storageBill/dto/StorageBillPrintAddDTO.java

@@ -101,5 +101,29 @@ public class StorageBillPrintAddDTO {
     @ApiModelProperty(value = "铸机号")
     private String ccmNo;
 
+    /**
+     * 撤回状态  0 未撤回  1 已撤回
+     */
+    @Excel(name = "撤回状态", width = 15)
+    @ApiModelProperty(value = "撤回状态")
+    private Integer withdrawStatus;
+
+    /**
+     * 撤回原因
+     */
+    @Excel(name = "撤回原因", width = 15)
+    @ApiModelProperty(value = "撤回原因")
+    private String withdrawReason;
+
+    /**
+     * 撤回时间
+     */
+    @Excel(name = "撤回时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "撤回时间")
+    private Date withdrawTime;
+
+
 
 }