RMallRemark.java
1.07 KB
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
package vion.model.monitor;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Getter;
import lombok.Setter;
import vion.dto.BaseDTO;
import java.time.LocalDate;
import java.util.Date;
/**
* mall注释关联表
*/
@Getter
@Setter
@TableName(value = "mr_mall_remark")
public class RMallRemark extends BaseDTO {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
@TableField(value = "mall_uid")
private String mallUid;
/**
* 备注日期
*/
@TableField(value = "remark_date")
private LocalDate remarkDate;
/**
* 备注
*/
@TableField(value = "remark")
private String remark;
@TableField(value = "creator")
private String creator;
@TableField(value = "updater")
private String updater;
@TableField(value = "create_time")
private Date createTime;
@TableField(value = "update_time")
private Date updateTime;
}