2023-11-04 16:30:50 +00:00
|
|
|
package com.yzdx.AiInterviewer.entity.dto;
|
|
|
|
|
|
|
|
import com.yzdx.AiInterviewer.entity.BaseEntity;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
@Data
|
2023-11-27 08:31:15 +00:00
|
|
|
public class JobDto extends BaseEntity {
|
2023-11-04 16:30:50 +00:00
|
|
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
private String jobName;
|
|
|
|
|
|
|
|
private Integer jobType;
|
|
|
|
|
2023-12-02 01:09:41 +00:00
|
|
|
private String jobTips;
|
|
|
|
|
2023-11-04 16:30:50 +00:00
|
|
|
private String detail;
|
|
|
|
|
|
|
|
private String salary;
|
|
|
|
|
|
|
|
private String number;
|
|
|
|
|
|
|
|
private String address;
|
|
|
|
|
|
|
|
private Integer status;
|
|
|
|
}
|