All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xinjump.easyexcel.example.biz.model.res.UserExcelRes Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.xinjump.easyexcel.example.biz.model.res;

import com.alibaba.excel.annotation.ExcelProperty;
import com.xinjump.easyexcel.annotation.Excel;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * @author xinjump
 * @version 1.1
 * @date 2020/11/20 14:59
 */
@Excel(fileName = "用户信息")
@NoArgsConstructor
@AllArgsConstructor
@Builder
@Data
public class UserExcelRes {

    @ExcelProperty(value = "用户ID", index = 0)
    private Long userId;

    @ExcelProperty(value = "用户名称", index = 1)
    private String userName;

    @ExcelProperty(value = "账户", index = 2)
    private String account;

    @ExcelProperty(value = "密码", index = 3)
    private String password;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy