|
@@ -1,9 +1,12 @@
|
|
|
package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
import com.ym.mec.auth.api.entity.SysUser;
|
|
|
+import com.ym.mec.biz.dal.enums.school.EQuitGroupAuditStatusEnum;
|
|
|
import com.ym.mec.common.entity.BaseEntity;
|
|
|
import com.ym.mec.common.enums.BaseEnum;
|
|
|
+import com.ym.mec.common.tenant.TenantContextHolder;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
@@ -12,7 +15,8 @@ import java.util.Date;
|
|
|
/**
|
|
|
* 对应数据库表(music_group_quit):
|
|
|
*/
|
|
|
-public class MusicGroupQuit extends BaseEntity {
|
|
|
+@Data
|
|
|
+public class MusicGroupQuit {
|
|
|
|
|
|
/** */
|
|
|
private Long id;
|
|
@@ -69,6 +73,12 @@ public class MusicGroupQuit extends BaseEntity {
|
|
|
@ApiModelProperty(value = "云教练金额",required = false)
|
|
|
private BigDecimal cloudTeacherAmount = BigDecimal.ZERO;
|
|
|
|
|
|
+ @ApiModelProperty(value = "学校审核人",required = false)
|
|
|
+ private Integer auditSchoolStaff;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学校审核状态",required = false)
|
|
|
+ private EQuitGroupAuditStatusEnum schoolStaffAuditStatus;
|
|
|
+
|
|
|
//毕业、不感兴趣、时间冲突、身体不适、其他(必选)
|
|
|
public enum ReasonEnum implements BaseEnum<String, MusicGroupQuit.ReasonEnum> {
|
|
|
GRADUATE("GRADUATE", "毕业"),
|
|
@@ -96,192 +106,5 @@ public class MusicGroupQuit extends BaseEntity {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public Integer getOperatorId() {
|
|
|
- return operatorId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOperatorId(Integer operatorId) {
|
|
|
- this.operatorId = operatorId;
|
|
|
- }
|
|
|
-
|
|
|
- public ReasonEnum getReasonEnum() {
|
|
|
- return reasonEnum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReasonEnum(ReasonEnum reasonEnum) {
|
|
|
- this.reasonEnum = reasonEnum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getApplyUserName() {
|
|
|
- return applyUserName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setApplyUserName(String applyUserName) {
|
|
|
- this.applyUserName = applyUserName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return this.id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Integer userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getUserId() {
|
|
|
- return this.userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMusicGroupId(String musicGroupId) {
|
|
|
- this.musicGroupId = musicGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMusicGroupId() {
|
|
|
- return this.musicGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJoinDate(java.util.Date joinDate) {
|
|
|
- this.joinDate = joinDate;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getJoinDate() {
|
|
|
- return this.joinDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setQuitDate(java.util.Date quitDate) {
|
|
|
- this.quitDate = quitDate;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getQuitDate() {
|
|
|
- return this.quitDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(java.util.Date createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getCreateTime() {
|
|
|
- return this.createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReason(String reason) {
|
|
|
- this.reason = reason;
|
|
|
- }
|
|
|
-
|
|
|
- public String getReason() {
|
|
|
- return this.reason;
|
|
|
- }
|
|
|
-
|
|
|
- public String getUserComment() {
|
|
|
- return userComment;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserComment(String userComment) {
|
|
|
- this.userComment = userComment;
|
|
|
- }
|
|
|
-
|
|
|
- public ApprovalStatus getStatus() {
|
|
|
- return status;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStatus(ApprovalStatus status) {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
-
|
|
|
- public SysUser getUser() {
|
|
|
- return user;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUser(SysUser user) {
|
|
|
- this.user = user;
|
|
|
- }
|
|
|
-
|
|
|
- public MusicGroup getMusicGroup() {
|
|
|
- return musicGroup;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMusicGroup(MusicGroup musicGroup) {
|
|
|
- this.musicGroup = musicGroup;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getApplyUserId() {
|
|
|
- return applyUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setApplyUserId(Integer applyUserId) {
|
|
|
- this.applyUserId = applyUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public Boolean getIsVisit() {
|
|
|
- return isVisit;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsVisit(Boolean isVisit) {
|
|
|
- this.isVisit = isVisit;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getVisitTime() {
|
|
|
- return visitTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setVisitTime(Date visitTime) {
|
|
|
- this.visitTime = visitTime;
|
|
|
- }
|
|
|
-
|
|
|
- public String getFeeJson() {
|
|
|
- return feeJson;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFeeJson(String feeJson) {
|
|
|
- this.feeJson = feeJson;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCurrentApproveRole() {
|
|
|
- return currentApproveRole;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCurrentApproveRole(String currentApproveRole) {
|
|
|
- this.currentApproveRole = currentApproveRole;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return ToStringBuilder.reflectionToString(this);
|
|
|
- }
|
|
|
-
|
|
|
- public Boolean getHasMaintenance() {
|
|
|
- return hasMaintenance;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHasMaintenance(Boolean hasMaintenance) {
|
|
|
- this.hasMaintenance = hasMaintenance;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getCloudTeacherAmount() {
|
|
|
- return cloudTeacherAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCloudTeacherAmount(BigDecimal cloudTeacherAmount) {
|
|
|
- this.cloudTeacherAmount = cloudTeacherAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public MusicGroupReturnFeeDto getReturnFeeDto() {
|
|
|
- return returnFeeDto;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReturnFeeDto(MusicGroupReturnFeeDto returnFeeDto) {
|
|
|
- this.returnFeeDto = returnFeeDto;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getReturnTotalFee() {
|
|
|
- return returnTotalFee;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReturnTotalFee(BigDecimal returnTotalFee) {
|
|
|
- this.returnTotalFee = returnTotalFee;
|
|
|
- }
|
|
|
+ private Integer tenantId = TenantContextHolder.getTenantId();
|
|
|
}
|