|
@@ -1,9 +1,13 @@
|
|
|
package com.fjhx.account.entity.cost.vo;
|
|
|
|
|
|
import com.fjhx.account.entity.cost.po.CostControlDetail;
|
|
|
+import com.fjhx.common.controller.Label;
|
|
|
+import com.fjhx.file.entity.ObsFile;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* 费控明细列表查询返回值实体
|
|
|
*
|
|
@@ -58,4 +62,16 @@ public class CostControlDetailVo extends CostControlDetail {
|
|
|
* 店铺名称
|
|
|
*/
|
|
|
private String shopName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 非发票附件 类型0
|
|
|
+ */
|
|
|
+ @Label("非发票附件")
|
|
|
+ private List<ObsFile> fileList;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发票附件 类型10
|
|
|
+ */
|
|
|
+ @Label("发票附件")
|
|
|
+ private List<ObsFile> invoiceFileList;
|
|
|
}
|