|
@@ -0,0 +1,136 @@
|
|
|
+package com.ym.mec.biz.dal.entity;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 对应数据库表(practice_group):
|
|
|
+ */
|
|
|
+public class PracticeGroup {
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private Integer subjectId;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private Integer userId;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private Integer singleClassMinutes;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private Integer organId;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private java.util.Date coursesStartDate;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private java.util.Date coursesExpireDate;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private java.util.Date createTime;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private java.util.Date updateTime;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private String memo;
|
|
|
+
|
|
|
+ public void setId(Long id){
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getId(){
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name){
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName(){
|
|
|
+ return this.name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectId(Integer subjectId){
|
|
|
+ this.subjectId = subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSubjectId(){
|
|
|
+ return this.subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(Integer userId){
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUserId(){
|
|
|
+ return this.userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSingleClassMinutes(Integer singleClassMinutes){
|
|
|
+ this.singleClassMinutes = singleClassMinutes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSingleClassMinutes(){
|
|
|
+ return this.singleClassMinutes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganId(Integer organId){
|
|
|
+ this.organId = organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOrganId(){
|
|
|
+ return this.organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoursesStartDate(java.util.Date coursesStartDate){
|
|
|
+ this.coursesStartDate = coursesStartDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getCoursesStartDate(){
|
|
|
+ return this.coursesStartDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoursesExpireDate(java.util.Date coursesExpireDate){
|
|
|
+ this.coursesExpireDate = coursesExpireDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getCoursesExpireDate(){
|
|
|
+ return this.coursesExpireDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(java.util.Date createTime){
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getCreateTime(){
|
|
|
+ return this.createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(java.util.Date updateTime){
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getUpdateTime(){
|
|
|
+ return this.updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMemo(String memo){
|
|
|
+ this.memo = memo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMemo(){
|
|
|
+ return this.memo;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return ToStringBuilder.reflectionToString(this);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|