|
@@ -257,6 +257,13 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
private String fBillstatus;
|
|
|
|
|
|
/**
|
|
|
+ * 库存明细 1 未入账 2 未完成所有入账 6 已入账
|
|
|
+ */
|
|
|
+ @Excel(name = "库存明细状态")
|
|
|
+ private String fItemsStatus;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
* 查询时间区间
|
|
|
*/
|
|
|
private List<String> timeInterval;
|
|
@@ -603,6 +610,14 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
return delFlag;
|
|
|
}
|
|
|
|
|
|
+ public String getfItemsStatus() {
|
|
|
+ return fItemsStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfItemsStatus(String fItemsStatus) {
|
|
|
+ this.fItemsStatus = fItemsStatus;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|