liuyu
昨天 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
 
package jnpf.base.model.printlog;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class PrintLogInfo {
    @Schema(description = "主键")
    private String id;
    @Schema(description = "打印人")
    private String printMan;
    @Schema(description = "打印时间")
    private Date printTime;
    @Schema(description = "打印数量")
    private Integer printNum;
    @Schema(description = "打印标题")
    private String printTitle;
    @Schema(description = "打印id")
    private String printId;
}