Compare commits
2 Commits
40f9ce4dd7
...
7602a08348
| Author | SHA1 | Date |
|---|---|---|
|
|
7602a08348 | |
|
|
7f4fff37c1 |
|
|
@ -0,0 +1,26 @@
|
||||||
|
package com.nflg.wms.common.pojo.qo;
|
||||||
|
|
||||||
|
import jakarta.validation.constraints.NotEmpty;
|
||||||
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老鼠图PDF导出请求参数
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class MaterialPdfExportQO {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 物料明细ID列表
|
||||||
|
*/
|
||||||
|
@NotEmpty(message = "物料ID不能为空")
|
||||||
|
private List<Long> ids;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 每页老鼠图数量(2/4/6/8/9,默认6)
|
||||||
|
*/
|
||||||
|
@NotNull(message = "每页数量不能为空")
|
||||||
|
private Integer perPage;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue