|
@@ -1,76 +1,11 @@
|
|
|
package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-public class ClassGroupTeacherSalary {
|
|
|
- private Long id;
|
|
|
-
|
|
|
- private Integer musicGroupId;
|
|
|
-
|
|
|
- private Integer classGroupId;
|
|
|
-
|
|
|
+public class ClassGroupTeacherSalary extends ClassGroupTeacherMapper {
|
|
|
/**
|
|
|
- * 老师角色(主教、助教)
|
|
|
- */
|
|
|
- private String teacherRole;
|
|
|
-
|
|
|
- private Integer userId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 课时长
|
|
|
- */
|
|
|
+ * 课时长
|
|
|
+ */
|
|
|
private Integer duration;
|
|
|
|
|
|
- /**
|
|
|
- * 薪酬
|
|
|
- */
|
|
|
- private BigDecimal salary;
|
|
|
-
|
|
|
- private Date createTime;
|
|
|
-
|
|
|
- private Date updateTime;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getMusicGroupId() {
|
|
|
- return musicGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMusicGroupId(Integer musicGroupId) {
|
|
|
- this.musicGroupId = musicGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getClassGroupId() {
|
|
|
- return classGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setClassGroupId(Integer classGroupId) {
|
|
|
- this.classGroupId = classGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTeacherRole() {
|
|
|
- return teacherRole;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTeacherRole(String teacherRole) {
|
|
|
- this.teacherRole = teacherRole;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Integer userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getDuration() {
|
|
|
return duration;
|
|
|
}
|
|
@@ -78,28 +13,4 @@ public class ClassGroupTeacherSalary {
|
|
|
public void setDuration(Integer duration) {
|
|
|
this.duration = duration;
|
|
|
}
|
|
|
-
|
|
|
- public BigDecimal getSalary() {
|
|
|
- return salary;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSalary(BigDecimal salary) {
|
|
|
- this.salary = salary;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getUpdateTime() {
|
|
|
- return updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTime(Date updateTime) {
|
|
|
- this.updateTime = updateTime;
|
|
|
- }
|
|
|
}
|