This commit is contained in:
张良(004796)
2024-01-02 18:48:33 +08:00
parent f1b95235d8
commit 2f918497c3
9 changed files with 77 additions and 7 deletions

View File

@@ -0,0 +1,32 @@
package com.ruoyi.cai.dto.admin.vo;
import com.ruoyi.cai.domain.Report;
import lombok.Data;
@Data
public class ReportAdminVo extends Report {
/**
* 用户号/ID号
*/
private String usercode;
/**
* 昵称
*/
private String nickname;
/**
* 手机号
*/
private String mobile;
/**
* 头像
*/
private String avatar;
private String reportUsercode;
private String reportNickname;
private String reportMobile;
private String reportAvatar;
}