RequirementsVO.java
695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.laowu.vo.position;
import com.laowu.model.PositionDictDO;
import lombok.Data;
import java.util.List;
import java.util.Set;
@Data
public class RequirementsVO {
private Long id;
private Long companyId;
private String companyName;
private String province;
private String city;
private String county;
private String itemName;
private String itemStatus;
private String startDate;
private String endDate;
private String amount;
private String address;
private String jobId;
private String positionStatus;
private List<PositionCountsVO> positionItemInfoDOS;
private Set<PositionDictDO> positionDictDOSet;
}