IntelligentRecognition/ah-jjsp-service/.svn/pristine/d6/d6ea97960a459933bd98239a224...

32 lines
419 B
Plaintext
Raw Normal View History

2024-05-24 16:09:40 +08:00
package com.sercurityControl.proteam.callInterface.domain;
import lombok.Data;
/**
* 班组评价dto-第三方调用实体类
*/
@Data
public class TeamEvaDto {
/**
* 开始时间
*/
private String startTime;
/**
* 结束时间
*/
private String endTime;
/**
* 页数
*/
private String page;
/**
* 每页容量
*/
private String limit;
}