exam-week3/yuan-common/src/main/java/com/bwie/common/domain/Candidate.java

49 lines
931 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bwie.common.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* @Author蓬叁
* @Packagecom.bwie.common.domain
* @Projectmaven-week3
* @nameCandidate
* @Date2024/8/6 上午10:43
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Candidate {
/**
* 编号
*/
private Integer candidateId ;
/**
* 岗位名称
*/
private String recruitmentPositionName ;
/**
* 候选人Id
*/
private Integer userId ;
/**
* 期望薪资
*/
private String recruitmentPositionPay ;
/**
* 投递时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:ss:mm")
private Date createTime ;
/**
* 候选人状态 0 待审核 1 已通过 2 不通过
*/
private Integer candidateState ;
}