zss
2023-08-22 affabbd21802dacbf943692912a83e63106670e4
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
30
31
32
33
34
35
package com.yuanchu.limslaboratory.pojo.Dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
 
/**
 * @Author 张宾
 * @Date 2023/8/9
 */
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="NonConformingFeedbackDto对象", description="")
public class NonConformingFeedbackDto implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "当前页", example = "1", required = true)
    private Long currentPage;
 
    @ApiModelProperty(value = "分页多少条", example = "10", required = true)
    private Long pageNum;
 
    @ApiModelProperty(value = "样品编号", example = "1680929494813868034")
    private String materialCode;
 
    @ApiModelProperty(value = "样品名称", example = "电线电缆")
    private String materialName;
 
    @ApiModelProperty(value = "申请单号", example = "XG-UGYUGH")
    private String inspectionCode;
}