package com.gk.hotwork.specialWork.mq.msg;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
/**
|
* 创建特殊作业
|
*/
|
|
public class ApplySpecialWorkMsg {
|
/**
|
* 作业id
|
*/
|
private Long workApplyId;
|
|
/**
|
* 作业开始时间
|
*/
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
private Date expStartTime;
|
|
public Long getWorkApplyId() {
|
return workApplyId;
|
}
|
|
public void setWorkApplyId(Long workApplyId) {
|
this.workApplyId = workApplyId;
|
}
|
|
public Date getExpStartTime() {
|
return expStartTime;
|
}
|
|
public void setExpStartTime(Date expStartTime) {
|
this.expStartTime = expStartTime;
|
}
|
}
|