xuhy
2024-09-11 9ca97fd558700e7054c5f54192a9db7a1e6b8230
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
import com.ruoyi.system.domain.TOrderStockGoods;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
 
@Data
@ApiModel(value = "进货数据生成export")
public class TOrderStockExportExcel implements Serializable {
 
    @Excel(width = 30,name = "进货单号",needMerge = true)
    private String stockNum;
 
    @Excel(width = 30,name = "进货日期",needMerge = true)
    private String stockTime;
 
    @ExcelCollection(name = "菜品明细")
    private List<TOrderStockGoods> orderStockGoods;
 
    @Excel(width = 30,name = "商品总价",needMerge = true)
    private BigDecimal stockTotalPrice;
 
}