Compare commits

..

No commits in common. "7602a083482fbc923b24df5328389213b4182f2a" and "40f9ce4dd7cd8464aeb76c07aabe6ebb39db395f" have entirely different histories.

1 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
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;
}