feat: user related logic refactor
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package xin.merlin.myplayerbackend.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("playroominfo")
|
||||
public class PlayroomInfo {
|
||||
@TableId("r_id")
|
||||
private Integer r_id;
|
||||
|
||||
private String r_name;
|
||||
private String r_introduction;
|
||||
private String r_avatar;
|
||||
}
|
||||
Reference in New Issue
Block a user