刘光辉
13 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.base.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
 
@Data
@TableName("base_print_log")
public class PrintLogEntity extends SuperExtendEntity<String> {
 
    /**
     * 打印条数
     */
    @TableField("F_PRINT_NUM")
    private Integer printNum;
 
    /**
     * 打印功能名称
     */
    @TableField("F_PRINT_TITLE")
    private String printTitle;
 
    /**
     * 模板id
     */
    @TableField("F_PRINT_ID")
    private String printId;
 
}