IntelligentRecognition/ah-jjsp-service/.svn/pristine/6a/6a0714ad7a9065183a946c52413...

23 lines
614 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.sercurityControl.decision.domain.qo;
import com.securityControl.common.core.web.page.PageDomain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel("计划管理班组告警列表入参")
public class TeamChangeListQo extends PageDomain {
@ApiModelProperty("日期")
private String workTime;
@ApiModelProperty("1类型变化2工序变化")
private Long changeType;
@ApiModelProperty("建管单位编码")
private String buildNo;
@ApiModelProperty("工程名称")
private String bidName;
}