guoyujie
昨天 91b61fe723df498d62c596372521d426299f0f8b
north-glass-erp/src/main/java/com/example/erp/entity/sd/GlassPriceBasic.java
New file
@@ -0,0 +1,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;
import java.time.LocalDateTime;
@Data
public class GlassPriceBasic {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private String type;
    private Double thickness;
    private String name;
    private String process;
    private Double price;
    private String json;
    private LocalDateTime createTime;
}