25 lines
389 B
Java
25 lines
389 B
Java
|
package com.yzdx.AiInterviewer.entity.dto;
|
||
|
|
||
|
import com.yzdx.AiInterviewer.entity.BaseEntity;
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class JobDto extends BaseEntity {
|
||
|
|
||
|
private Integer id;
|
||
|
|
||
|
private String jobName;
|
||
|
|
||
|
private Integer jobType;
|
||
|
|
||
|
private String detail;
|
||
|
|
||
|
private String salary;
|
||
|
|
||
|
private String number;
|
||
|
|
||
|
private String address;
|
||
|
|
||
|
private Integer status;
|
||
|
}
|