guoyuji
2024-06-13 23c6db6db89c6021bb44d6cd2511789cd82e73af
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;
 
}