1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.example.erp.entity.pp;
|
| import lombok.Data;
|
| import java.time.LocalDate;
|
| @Data
| public class PrintSetup {
| //自增id
| private Integer id;
| //打印标签类型
| private String printType;
| //打印标签名称
| private String printTypeName;
| //状态
| private String printState;
|
| }
|
|