IntelligentRecognition/ah-jjsp-service/.svn/pristine/f9/f9d2e960d0b3f44cefcc55cb395...

37 lines
861 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.vo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@Data
@ApiModel("无施工班组列表")
public class NoWorkNoticeVo implements Serializable {
@ApiModelProperty("有无计划0-无1-有)")
private Integer plan;
@ApiModelProperty("日期")
private String workDate;
@ApiModelProperty("建管单位")
private String buildUnit;
@ApiModelProperty("工程名称")
private String projectName;
@ApiModelProperty("班组名称")
private String teamName;
@ApiModelProperty("班组长名称")
private String teamLeaderName;
@ApiModelProperty("联系电话")
private String phone;
private String type;
private static final long serialVersionUID = 1L;
}