Blame view

SelectMembersVO.java 569 Bytes
涂亚平 committed
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
package com.subsidy.vo.member;

import com.subsidy.model.DepartmentDictDO;
import lombok.Data;

import java.util.List;

@Data
public class SelectMembersVO {

    private Long mappingId;

    private Long id;

    private String userName;

    private String telephone;

    private String idCard;

    private String status;

    private String accountName;

    private String gender;

    private String email;

    private String accountNameEn;

    private String workNo;

    private String inductionDate;

    private List<DepartmentDictDO> departmentDictDOS;

}