|
|
@@ -2,6 +2,7 @@ package com.zhongzheng.modules.recruit.vo;
|
|
|
|
|
|
import com.zhongzheng.common.annotation.Excel;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import java.math.BigDecimal;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
@@ -13,7 +14,7 @@ import java.util.Date;
|
|
|
* 招聘用户简历视图对象 mall_package
|
|
|
*
|
|
|
* @author hjl
|
|
|
- * @date 2021-08-18
|
|
|
+ * @date 2021-08-23
|
|
|
*/
|
|
|
@Data
|
|
|
@ApiModel("招聘用户简历视图对象")
|
|
|
@@ -76,5 +77,37 @@ public class RecruitResumeVo {
|
|
|
@Excel(name = "建筑证书列表")
|
|
|
@ApiModelProperty("建筑证书列表")
|
|
|
private String buildingCertificateJson;
|
|
|
+ /** 期待薪资起点 */
|
|
|
+ @Excel(name = "期待薪资起点")
|
|
|
+ @ApiModelProperty("期待薪资起点")
|
|
|
+ private BigDecimal wantIncomeStart;
|
|
|
+ /** 期待薪资结点 */
|
|
|
+ @Excel(name = "期待薪资结点")
|
|
|
+ @ApiModelProperty("期待薪资结点")
|
|
|
+ private BigDecimal wantIncomeEnd;
|
|
|
+ /** 1月薪 2年薪 */
|
|
|
+ @Excel(name = "1月薪 2年薪")
|
|
|
+ @ApiModelProperty("1月薪 2年薪")
|
|
|
+ private Integer wantIncomeType;
|
|
|
+ /** 省份 */
|
|
|
+ @Excel(name = "省份")
|
|
|
+ @ApiModelProperty("省份")
|
|
|
+ private String province;
|
|
|
+ /** 城市 */
|
|
|
+ @Excel(name = "城市")
|
|
|
+ @ApiModelProperty("城市")
|
|
|
+ private String city;
|
|
|
+ /** 区 */
|
|
|
+ @Excel(name = "区")
|
|
|
+ @ApiModelProperty("区")
|
|
|
+ private String district;
|
|
|
+ /** 工作类型 */
|
|
|
+ @Excel(name = "工作类型")
|
|
|
+ @ApiModelProperty("工作类型")
|
|
|
+ private String jobType;
|
|
|
+ /** 到岗时间 */
|
|
|
+ @Excel(name = "到岗时间")
|
|
|
+ @ApiModelProperty("到岗时间")
|
|
|
+ private String comeWorkTime;
|
|
|
|
|
|
}
|