You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test/basic_info/vo/CounselorRespVO.java

37 lines
1.1 KiB

package cn.iocoder.yudao.module.zhuguang.controller.admin.basic_info.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.util.*;
import com.alibaba.excel.annotation.*;
@Schema(description = "管理后台 - 辅导员 Response VO")
@Data
@ExcelIgnoreUnannotated
public class CounselorRespVO {
@Schema(description = "唯一标识一个辅导员", requiredMode = Schema.RequiredMode.REQUIRED, example = "21456")
@ExcelProperty("唯一标识一个辅导员")
private Long id;
@Schema(description = "辅导员的姓名", example = "李四")
@ExcelProperty("辅导员的姓名")
private String counselorName;
@Schema(description = "辅导员的性别")
@ExcelProperty("辅导员的性别")
private String counselorSex;
@Schema(description = "辅导员的年龄")
@ExcelProperty("辅导员的年龄")
private Long counselorAge;
@Schema(description = "辅导员的邮箱")
@ExcelProperty("辅导员的邮箱")
private String counselorEmail;
@Schema(description = "电话号码")
@ExcelProperty("电话号码")
private String phoneNumber;
}