Blame view

AddStudentsDTO.java 294 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.meishu.dto.userrole;

import lombok.Data;

@Data
public class AddStudentsDTO {

    private String userName;

    private String studyCode;

    private String phone;

    private String idCard;

    private String session;

    private String gender;

    private String email;

}