This commit is contained in:
张良(004796)
2024-05-06 16:39:56 +08:00
parent e0389ad597
commit 4b35d1d089
23 changed files with 394 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
package com.ruoyi.cai.dto.commom.user;
import lombok.Data;
@Data
public class MinUser {
private Long id;
private Integer gender;
/**
* 隐身模式 0-关闭 1-打开
*/
private Integer noGreet;
}