|
|
@@ -4,6 +4,7 @@ import java.math.BigDecimal;
|
|
4
|
4
|
import java.util.Date;
|
|
5
|
5
|
|
|
6
|
6
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
7
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
7
|
8
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
8
|
9
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
9
|
10
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
@@ -24,6 +25,10 @@ public class LedgerSeizureStats extends BaseEntity {
|
|
24
|
25
|
@Excel(name = "查获日期", width = 20, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
25
|
26
|
private Date recordDate;
|
|
26
|
27
|
|
|
|
28
|
+ @TableField(exist = false)
|
|
|
29
|
+ @Excel(name = "查获时间", width = 20, dateFormat = "HH:mm:ss")
|
|
|
30
|
+ private Date seizureTime;
|
|
|
31
|
+
|
|
27
|
32
|
@Excel(name = "部门名称")
|
|
28
|
33
|
private String deptName;
|
|
29
|
34
|
|
|
|
@@ -129,6 +134,9 @@ public class LedgerSeizureStats extends BaseEntity {
|
|
129
|
134
|
public Date getRecordDate() { return recordDate; }
|
|
130
|
135
|
public void setRecordDate(Date recordDate) { this.recordDate = recordDate; }
|
|
131
|
136
|
|
|
|
137
|
+ public Date getSeizureTime() { return seizureTime; }
|
|
|
138
|
+ public void setSeizureTime(Date seizureTime) { this.seizureTime = seizureTime; }
|
|
|
139
|
+
|
|
132
|
140
|
public String getDeptName() { return deptName; }
|
|
133
|
141
|
public void setDeptName(String deptName) { this.deptName = deptName; }
|
|
134
|
142
|
|