guoyuji
2024-01-22 bee470b90e31c1d22bebfc085e829034e7268f0f
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;
}