guoyuji
2024-02-22 1b86547ddc47a96e86eb376d0a381814ad621fd0
north-glass-erp/src/main/java/com/example/erp/entity/sd/BasicGlassType.java
New file
@@ -0,0 +1,17 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data
public class BasicGlassType {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private Integer level;
    private String belong;
    private String typeID;
    private String typeName;
    private String createTime;
}