|
@@ -1,6 +1,7 @@
|
|
|
package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
@@ -9,6 +10,7 @@ import java.math.BigDecimal;
|
|
|
/**
|
|
|
* 对应数据库表(music_group_calender_refund_period):
|
|
|
*/
|
|
|
+@Data
|
|
|
public class MusicGroupCalenderRefundPeriod {
|
|
|
|
|
|
/** */
|
|
@@ -40,6 +42,9 @@ public class MusicGroupCalenderRefundPeriod {
|
|
|
|
|
|
@ApiModelProperty(value = "订单编号",required = false)
|
|
|
private String orderNos;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "备注",required = false)
|
|
|
+ private String memo;
|
|
|
|
|
|
/** */
|
|
|
private java.util.Date createTime;
|
|
@@ -47,102 +52,6 @@ public class MusicGroupCalenderRefundPeriod {
|
|
|
/** */
|
|
|
private java.util.Date updateTime;
|
|
|
|
|
|
- public String getOrderNos() {
|
|
|
- return orderNos;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderNos(String orderNos) {
|
|
|
- this.orderNos = orderNos;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getIncome() {
|
|
|
- return income;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIncome(BigDecimal income) {
|
|
|
- this.income = income;
|
|
|
- }
|
|
|
-
|
|
|
- public Boolean getRefundFlag() {
|
|
|
- return refundFlag;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRefundFlag(Boolean refundFlag) {
|
|
|
- this.refundFlag = refundFlag;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Integer id){
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getId(){
|
|
|
- return this.id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrganId(Integer organId){
|
|
|
- this.organId = organId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getOrganId(){
|
|
|
- return this.organId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCooperationOrganId(Integer cooperationOrganId){
|
|
|
- this.cooperationOrganId = cooperationOrganId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getCooperationOrganId(){
|
|
|
- return this.cooperationOrganId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCalenderId(Long calenderId){
|
|
|
- this.calenderId = calenderId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCalenderId(){
|
|
|
- return this.calenderId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRefundDate(String refundDate){
|
|
|
- this.refundDate = refundDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRefundDate(){
|
|
|
- return this.refundDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRefundAmount(java.math.BigDecimal refundAmount){
|
|
|
- this.refundAmount = refundAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public java.math.BigDecimal getRefundAmount(){
|
|
|
- return this.refundAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubRefundAmount(java.math.BigDecimal subRefundAmount){
|
|
|
- this.subRefundAmount = subRefundAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public java.math.BigDecimal getSubRefundAmount(){
|
|
|
- return this.subRefundAmount;
|
|
|
- }
|
|
|
-
|
|
|
- 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;
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return ToStringBuilder.reflectionToString(this);
|