package org.springblade.modules.traceability.dto;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author zhongrj
|
*/
|
@Data
|
public class SweepRecordDTO implements Serializable {
|
/**
|
* 本日扫描总次数
|
*/
|
private Integer todayNum;
|
|
/**
|
* 昨日扫描总次数
|
*/
|
private Integer yesterdayNum;
|
|
/**
|
* 本周扫描总次数
|
*/
|
private Integer thisWeekNum;
|
|
/**
|
* 去周扫描总次数
|
*/
|
private Integer lastWeekNum;
|
|
/**
|
* 本月扫描总次数
|
*/
|
private Integer thisMonthNum;
|
|
/**
|
* 上个月扫描总次数
|
*/
|
private Integer lastMonthNum;
|
|
}
|