龚焕茏
2024-03-07 8af76e086fab5fc346e0431d18797c1ff82af8dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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;
 
 
}