廖井涛
2024-06-17 d4f6c4154611408d3be9fbe04816d761a9e4cd2c
north-glass-erp/src/main/java/com/example/erp/entity/userInfo/Role.java
New file
@@ -0,0 +1,12 @@
package com.example.erp.entity.userInfo;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data
public class Role {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private String role;
}