IntelligentRecognition/ah-jjsp-service/.svn/pristine/4c/4c1e641713f50dff7ca2a73cb30...

31 lines
685 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;
@Data
@ApiModel("更多班组列表")
public class TeamAccessListVo {
@ApiModelProperty("日期yyyy-MM-dd")
private String dateTime;
@ApiModelProperty("监管单位名称")
private String buildUnit;
@ApiModelProperty("工程名称")
private String projectName;
@ApiModelProperty("班组名称")
private String teamName;
@ApiModelProperty("作业内容")
private String workContent;
@ApiModelProperty("班组创建日期/变更日期")
private String createTime;
}