Blame view

AttendMembersVO.java 616 Bytes
涂亚平 committed
1 2
package com.subsidy.vo.member;

3 4
import com.subsidy.model.DepartmentDictDO;
import com.subsidy.model.JobDictDO;
涂亚平 committed
5 6
import lombok.Data;

7 8
import java.util.List;

涂亚平 committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
@Data
public class AttendMembersVO {

    private Long id;

    private String userName;

    private String accountNameEn;

    private String accountName;

    private String gender;

    private String telephone;

    private String idCard;

    private String email;

28 29 30 31 32 33 34
    private String status;

    private String workNo;

    private String inductionDate;

    private List<DepartmentDictDO> departmentDictDOS;
涂亚平 committed
35

36
    private List<JobDictDO> jobDictDOS;
涂亚平 committed
37
}