bobol
11 months ago
6 changed files with 140 additions and 28 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.lzbi.draft.domain.req; |
||||
|
|
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
@Data |
||||
|
@NoArgsConstructor |
||||
|
@AllArgsConstructor |
||||
|
public class ProductionDailySheetReq { |
||||
|
|
||||
|
/** |
||||
|
* sheet页序号 |
||||
|
*/ |
||||
|
private int index; |
||||
|
/** |
||||
|
* sheet页名称 |
||||
|
*/ |
||||
|
private String name; |
||||
|
/** |
||||
|
* 数据 |
||||
|
*/ |
||||
|
private List<List<String>> data; |
||||
|
|
||||
|
} |
@ -0,0 +1,27 @@ |
|||||
|
package com.lzbi.draft.domain.vo; |
||||
|
|
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
@Data |
||||
|
@NoArgsConstructor |
||||
|
@AllArgsConstructor |
||||
|
public class ProductionDailySheetVO { |
||||
|
|
||||
|
/** |
||||
|
* sheet页序号 |
||||
|
*/ |
||||
|
private int index; |
||||
|
/** |
||||
|
* sheet页名称 |
||||
|
*/ |
||||
|
private String name; |
||||
|
/** |
||||
|
* 数据 |
||||
|
*/ |
||||
|
private List<List<String>> data; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue