1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package com.ruoyi.demo.domain.vo;
- import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
- import com.alibaba.excel.annotation.ExcelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * 测试单表视图对象 test_demo
- *
- * @author Lion Li
- * @date 2021-07-26
- */
- @Data
- @ExcelIgnoreUnannotated
- public class TestDemoVo {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @ExcelProperty(value = "主键")
- private Long id;
- /**
- * 部门id
- */
- @ExcelProperty(value = "部门id")
- private Long deptId;
- /**
- * 用户id
- */
- @ExcelProperty(value = "用户id")
- private Long userId;
- /**
- * 排序号
- */
- @ExcelProperty(value = "排序号")
- private Integer orderNum;
- /**
- * key键
- */
- @ExcelProperty(value = "key键")
- private String testKey;
- /**
- * 值
- */
- @ExcelProperty(value = "值")
- private String value;
- /**
- * 创建时间
- */
- @ExcelProperty(value = "创建时间")
- private Date createTime;
- /**
- * 创建人
- */
- @ExcelProperty(value = "创建人")
- private String createBy;
- /**
- * 更新时间
- */
- @ExcelProperty(value = "更新时间")
- private Date updateTime;
- /**
- * 更新人
- */
- @ExcelProperty(value = "更新人")
- private String updateBy;
- }
|