You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.yanzhen.entity ;
import javax.validation.constraints.NotNull ;
import org.hibernate.validator.constraints.Length ;
import com.yanzhen.utils.Entity ;
import java.util.Date ;
public class SelectionJoiner extends Entity { // 定义一个名为SelectionJoiner的类, 继承自Entity类
private Integer id ; // 定义一个私有的Integer类型的变量id
private Integer selectionId ; // 定义一个私有的Integer类型的变量selectionId
private Integer clazzId ; // 定义一个私有的Integer类型的变量clazzId
public Integer getId ( ) { // 定义一个公共方法getId, 用于获取id的值
return id ;
}
public void setId ( Integer id ) { // 定义一个公共方法setId, 用于设置id的值
this . id = id ;
}
public Integer getSelectionId ( ) { // 定义一个公共方法getSelectionId, 用于获取selectionId的值
return selectionId ;
}
public void setSelectionId ( Integer selectionId ) { // 定义一个公共方法setSelectionId, 用于设置selectionId的值
this . selectionId = selectionId ;
}
public Integer getClazzId ( ) { // 定义一个公共方法getClazzId, 用于获取clazzId的值
return clazzId ;
}
public void setClazzId ( Integer clazzId ) { // 定义一个公共方法setClazzId, 用于设置clazzId的值
this . clazzId = clazzId ;
}
}