You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
348 B
Java
16 lines
348 B
Java
|
1 year ago
|
package com.sztzjy.linkCommerce.entity.dto;
|
||
|
|
|
||
|
|
import com.sztzjy.linkCommerce.entity.SchoolFaculty;
|
||
|
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class SchoolFacultyDto {
|
||
|
|
|
||
|
|
@ApiModelProperty("学校名称")
|
||
|
|
String schoolName;
|
||
|
|
|
||
|
|
@ApiModelProperty("schoolFaculty对象")
|
||
|
|
SchoolFaculty schoolFaculty;
|
||
|
|
}
|