|
@@ -1,5 +1,6 @@
|
|
|
package com.ruoyi.warehouseBusiness.excel;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
@@ -30,11 +31,13 @@ public class QueryMenu {
|
|
|
* 业务日期
|
|
|
*/
|
|
|
@Excel(name = "业务日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date fBsdate;
|
|
|
|
|
|
/**
|
|
|
* 审核日期
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@Excel(name = "审核日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date fReviewDate;
|
|
|
|
|
@@ -96,6 +99,7 @@ public class QueryMenu {
|
|
|
* 对账日期
|
|
|
*/
|
|
|
@Excel(name = "对账日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date fAccamountDate;
|
|
|
|
|
|
/**
|
|
@@ -135,6 +139,12 @@ public class QueryMenu {
|
|
|
private String fProductName;
|
|
|
|
|
|
/**
|
|
|
+ * 结算方式
|
|
|
+ */
|
|
|
+ @Excel(name = "结算方式", dictType = "data_stltype_type")
|
|
|
+ private Long fStltypeid;
|
|
|
+
|
|
|
+ /**
|
|
|
* 备注
|
|
|
*/
|
|
|
@Excel(name = "备注")
|
|
@@ -300,6 +310,14 @@ public class QueryMenu {
|
|
|
this.fProductName = fProductName;
|
|
|
}
|
|
|
|
|
|
+ public Long getfStltypeid() {
|
|
|
+ return fStltypeid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfStltypeid(Long fStltypeid) {
|
|
|
+ this.fStltypeid = fStltypeid;
|
|
|
+ }
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -331,6 +349,7 @@ public class QueryMenu {
|
|
|
", fUnitprice=" + fUnitprice +
|
|
|
", fBilltype='" + fBilltype + '\'' +
|
|
|
", fProductName='" + fProductName + '\'' +
|
|
|
+ ", fStltypeid=" + fStltypeid +
|
|
|
", remark='" + remark + '\'' +
|
|
|
'}';
|
|
|
}
|