Blame view

JudgeInfoVO.java 232 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.zhongzhi.vo.judge;

import lombok.Data;

@Data
public class JudgeInfoVO {

    private String username;

    private String telephone;

    private String position;

    private String unit;

    private String token;
}