guoyuji
2024-09-26 8c29a327707574f1e04cd25218e05ba9b4c8e4a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.example.erp.entity.sd;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.time.LocalDate;
 
@Data
public class GlassType {
    @TableId(type = IdType.AUTO)
 
    private Long id;
    private Integer typeGrade;
    private String typeId;
    private String typeName;
    private String parentTypeId;
    private LocalDate createTime;
    private LocalDate updateTime;
 
}