|
@@ -1,11 +1,13 @@
|
|
package com.ym.mec.biz.dal.entity;
|
|
package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
import com.ym.mec.biz.dal.dto.PayParamBasicDto;
|
|
import com.ym.mec.biz.dal.dto.PayParamBasicDto;
|
|
|
|
+import com.ym.mec.biz.dal.dto.SysCouponCodeDto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
+import java.util.List;
|
|
|
|
|
|
public class StudentRepair extends PayParamBasicDto {
|
|
public class StudentRepair extends PayParamBasicDto {
|
|
private Integer id;
|
|
private Integer id;
|
|
@@ -214,6 +216,17 @@ public class StudentRepair extends PayParamBasicDto {
|
|
@ApiModelProperty(value = "辅件金额", required = false)
|
|
@ApiModelProperty(value = "辅件金额", required = false)
|
|
private BigDecimal repairGoodsAmount = BigDecimal.ZERO;
|
|
private BigDecimal repairGoodsAmount = BigDecimal.ZERO;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "优惠券列表", required = false)
|
|
|
|
+ List<SysCouponCodeDto> couponCodeDtos;
|
|
|
|
+
|
|
|
|
+ public List<SysCouponCodeDto> getCouponCodeDtos() {
|
|
|
|
+ return couponCodeDtos;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCouponCodeDtos(List<SysCouponCodeDto> couponCodeDtos) {
|
|
|
|
+ this.couponCodeDtos = couponCodeDtos;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getCouponIds() {
|
|
public String getCouponIds() {
|
|
return couponIds;
|
|
return couponIds;
|
|
}
|
|
}
|