廖井涛
2024-01-23 1de7198e488a0e4e82c67b36b498db1c4aef73e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 BasicData {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private String basicType;
    private String name;
    private String type;
    private LocalDate createTime;
    private LocalDate updateTime;
}