yuejunhao
2024-01-08 220b7854df1237bd10bda3f569afb57115c19c1e
north-glass-erp/src/main/java/com/example/erp/entity/Order.java
New file
@@ -0,0 +1,24 @@
package com.example.erp.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data  //lombok 简写java代码 实体类的get与set
public class Order {
    @TableId(type = IdType.AUTO)
    private  Integer id;
    private  String orderid;
    private  String recipeno;
    private  String largeglassno;
    private  String largeglasscompleted;
    private  String smallglassno;
    private  String smallglasscompleted;
    private  String smallglassprocessing;
    private  String smallglassworn;
    private  String orderstatus;
    private  String ordermaker;
    private  String maketime;
    private  String updatetime;
}