Blame view

OneJobVO.java 676 Bytes
涂亚平 committed
1 2
package com.laowu.vo.job;

涂亚平 committed
3
import com.laowu.model.CompanyPhotoDO;
涂亚平 committed
4 5 6 7 8 9 10 11 12 13 14 15 16
import lombok.Data;

import java.util.List;

@Data
public class OneJobVO {

    private Long id;

    private Long positionId;

    private String jobName;

涂亚平 committed
17 18
    private Long companyId;

涂亚平 committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    private String companyName;

    private String startSalary;

    private String endSalary;

    private String province;

    private String city;

    private String recruitType;

    private String parentType;

    private String sonType;

    private String jobId;

    private String jobDesc;

    private String jobRequirement;

    private String companyDesc;

涂亚平 committed
43
    private List<CompanyPhotoDO> companyPhotoDOS;
涂亚平 committed
44
}