ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package jnpf.base.model.vo;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
 
import java.util.Date;
 
 
@Data
public class PrintLogVO {
 
    /**
     * 打印人
     */
    private String printMan;
    /**
     * 打印时间
     */
    private Long printTime;
    /**
     * 打印条数
     */
    private Integer printNum;
    /**
     * 打印功能名称
     */
    private String printTitle;
 
    /**
     * 基于哪一个模板
     */
    private String printId;
 
    /**
     * 日志id
     */
    @JsonIgnore
    private String id;
 
    /**
     * 账号
     */
    @JsonIgnore
    private String account;
 
    /**
     * 名称
     */
    @JsonIgnore
    private String realName;
    /**
     * 打印时间
     */
    @JsonIgnore
    private Date creatorTime;
 
    public Long getPrintTime() {
        if (this.creatorTime == null) {
            return null;
        }
        return this.creatorTime.getTime();
    }
 
    public String getPrintMan() {
        return this.realName + "/" + this.account;
    }
}