package org.dromara.demo.domain.vo;
|
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
import org.dromara.demo.domain.TargetManage;
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import org.dromara.common.excel.annotation.ExcelDictFormat;
|
import org.dromara.common.excel.convert.ExcelDictConvert;
|
import io.github.linpeilie.annotations.AutoMapper;
|
import lombok.Data;
|
import org.dromara.system.domain.SysUser;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
|
/**
|
* 【请填写功能名称】视图对象 target_manage
|
*
|
* @author Lion Li
|
* @date 2024-02-20
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = TargetManage.class)
|
public class TargetManageVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
private Integer tgStatus;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
private Integer tgType;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
private Date tgCreateTime;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
private Long tgId;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
private Long userId;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
private String tgName;
|
|
private SysUser sysUser;
|
|
|
}
|