|  | @@ -1,15 +1,16 @@
 | 
	
		
			
				|  |  |  package com.ym.mec.biz.dal.entity;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +import java.util.Date;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +import org.apache.commons.lang3.builder.ToStringBuilder;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.entity.CooperationOrgan.OwnershipType;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalender.FeeType;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.enums.MusicGroupStatusEnum;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.enums.SalarySettlementTypeEnum;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.enums.YesOrNoEnum;
 | 
	
		
			
				|  |  | -import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  | -import org.apache.commons.lang3.StringUtils;
 | 
	
		
			
				|  |  | -import org.apache.commons.lang3.builder.ToStringBuilder;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -import java.util.Date;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  /**
 | 
	
		
			
				|  |  |   * 对应数据库表(music_group):
 | 
	
	
		
			
				|  | @@ -89,10 +90,10 @@ public class MusicGroup {
 | 
	
		
			
				|  |  |  	private java.util.Date paymentExpireDate;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	@ApiModelProperty(value = "缴费有效期开始时间", required = false)
 | 
	
		
			
				|  |  | -	private String paymentValidStartDate;
 | 
	
		
			
				|  |  | +	private Date paymentValidStartDate;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	@ApiModelProperty(value = "缴费有效期结束时间", required = false)
 | 
	
		
			
				|  |  | -	private String paymentValidEndDate;
 | 
	
		
			
				|  |  | +	private Date paymentValidEndDate;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	@ApiModelProperty(value = "缴费方式0按月,1按季,2一次性", required = false)
 | 
	
		
			
				|  |  |  	private Integer paymentPattern;
 | 
	
	
		
			
				|  | @@ -174,24 +175,20 @@ public class MusicGroup {
 | 
	
		
			
				|  |  |  		this.paymentPattern = paymentPattern;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public String getPaymentValidStartDate() {
 | 
	
		
			
				|  |  | +	public Date getPaymentValidStartDate() {
 | 
	
		
			
				|  |  |  		return paymentValidStartDate;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public void setPaymentValidStartDate(String paymentValidStartDate) {
 | 
	
		
			
				|  |  | +	public void setPaymentValidStartDate(Date paymentValidStartDate) {
 | 
	
		
			
				|  |  |  		this.paymentValidStartDate = paymentValidStartDate;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public String getPaymentValidEndDate() {
 | 
	
		
			
				|  |  | +	public Date getPaymentValidEndDate() {
 | 
	
		
			
				|  |  |  		return paymentValidEndDate;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public void setPaymentValidEndDate(String paymentValidEndDate) {
 | 
	
		
			
				|  |  | -		if(StringUtils.isEmpty(paymentValidEndDate)){
 | 
	
		
			
				|  |  | -			this.paymentValidEndDate = null;
 | 
	
		
			
				|  |  | -		}else {
 | 
	
		
			
				|  |  | -			this.paymentValidEndDate = paymentValidEndDate;
 | 
	
		
			
				|  |  | -		}
 | 
	
		
			
				|  |  | +	public void setPaymentValidEndDate(Date paymentValidEndDate) {
 | 
	
		
			
				|  |  | +		this.paymentValidEndDate = paymentValidEndDate;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	public String getSubjectName() {
 |