guoyuji
2024-03-07 3e100eddbd89f13894870be8dd0cf380e1eef65f
north-glass-erp/src/main/java/com/example/erp/entity/sd/Customer.java
New file
@@ -0,0 +1,18 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data
public class Customer {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String customerName;
    private String grade;
    private Double moneyLimit;
    private String address;
    private String contact;
    private String phone;
}