chenlu
2024-08-29 f32fa90bb4c5706507033b62e0c0da4435d3587f
north-glass-erp/src/main/java/com/example/erp/entity/userInfo/UserRole.java
New file
@@ -0,0 +1,17 @@
package com.example.erp.entity.userInfo;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data
public class UserRole {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private Integer userId;
    private Integer roleId;
    @TableField(select = false,exist = false)
    private String role;
}