春风项目四线(合箱线、总装线)
wujian
2024-10-23 2c65c31aceb16c1d06c692266e3fb555ecafdfb5
提交 | 用户 | 时间
2c65c3 1 package com.jcdm.main.da.passingStationCollection.domain;
W 2
3 import com.jcdm.common.annotation.Excel;
4 import lombok.Data;
5
6 @Data
7 public class ProductNumVO {
8
9     @Excel(name = "日期")
10     private String queryDate;
11
12     @Excel(name = "机型")
13     private String model;
14
15     @Excel(name = "产量")
16     private Integer num;
17
18
19 }