21 lines
338 B
Plaintext
21 lines
338 B
Plaintext
|
|
package com.sercurityControl.decision.domain.vo;
|
||
|
|
|
||
|
|
import io.swagger.annotations.ApiModel;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@ApiModel("新增班组提醒")
|
||
|
|
public class TeamAccessChangeVo {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 今日新增数量
|
||
|
|
*/
|
||
|
|
private String todayCount;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 昨日新增数量
|
||
|
|
*/
|
||
|
|
private String yesterdayCount;
|
||
|
|
|
||
|
|
}
|