123
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.ruoyi.cai.dto.admin.vo.syspush;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MinUserDTO {
|
||||
private Long userId;
|
||||
private String usercode;
|
||||
private String nickname;
|
||||
|
||||
public MinUserDTO(Long userId, String usercode, String nickname) {
|
||||
this.userId = userId;
|
||||
this.usercode = usercode;
|
||||
this.nickname = nickname;
|
||||
}
|
||||
|
||||
public MinUserDTO() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user