37 lines
712 B
Plaintext
37 lines
712 B
Plaintext
package com.cmeim.basic.vo;
|
|
|
|
import com.cmeim.basic.po.BaTeam;
|
|
import com.cmeim.basic.po.NewBaTimes;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@ApiModel("班次班组绑定vo")
|
|
@Data
|
|
public class TimeTeamVo {
|
|
@ApiModelProperty("生产日历Id")
|
|
private Long productCalenderId;
|
|
|
|
private Boolean allDay;
|
|
|
|
private Long id;
|
|
|
|
private Integer index;
|
|
|
|
@ApiModelProperty("日期")
|
|
private Date start;
|
|
|
|
private String startStr;
|
|
|
|
private String title;
|
|
|
|
@ApiModelProperty("班次信息")
|
|
private NewBaTimes newBaTimes;
|
|
|
|
@ApiModelProperty("班组信息")
|
|
private BaTeam baTeam;
|
|
|
|
}
|