RegisterDTO.java 232 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 package com.zhongzhi.dto.student; import com.zhongzhi.model.StudentDO; import lombok.Data; @Data public class RegisterDTO extends StudentDO { private String name; private String education; private String code; }