InterviewNotice.java 1.18 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package cn.timer.api.dto.template;

import cn.timer.api.dto.wxgzh.MessageQueueDto;
import cn.timer.api.utils.DateFormatUtils;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * @author wuqingjun
 * @email 284718418@qq.com
 * @date 2022/4/18
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class InterviewNotice extends MessageQueueDto {
21 22 23 24 25

    /**
     * 通知人,操作者
     */
    private String NoticeName;
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    /**
     * 面试者名字
     */
    private String name;
    /**
     * 职位名称
     */
    private String zpglZwxxName;
    /**
     * 面试时间
     */
    private String interviewTime;
    /**
     * 备注
     */
    private String remark;
284718418@qq.com committed
42 43 44 45
    /**
     * 内容
     */
    private String contentStr;
46

47 48 49 50 51 52 53 54 55
    /**
     * 通知内容
     */
    private String contentNotice;
    /**
     * 当前时间
     */
    private String nowTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());

56 57 58 59 60
    public void setInterviewTime(Date interviewTime){
        this.interviewTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(interviewTime);
    }

}