|
@@ -1,13 +1,16 @@
|
|
|
package com.fire.dto;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
/**
|
|
|
* @author: liuliu
|
|
|
* @ClassName: CustomerProductDto
|
|
|
- * @Description: TODO 客户产品DTO
|
|
|
+ * @Description: TODO 客户产品
|
|
|
* @date: 2021-05-19 15:50
|
|
|
*/
|
|
|
@Data
|
|
@@ -38,14 +41,21 @@ public class CustomerProduct {
|
|
|
@ApiModelProperty(value = "是否有效 (1:有效 0:无效)")
|
|
|
private Integer isValid;
|
|
|
|
|
|
+ @ApiModelProperty(value = "客户结算价格折扣")
|
|
|
+ private BigDecimal discount;
|
|
|
+
|
|
|
/********************扩展冗余字段*********************/
|
|
|
|
|
|
@ApiModelProperty(value = "适用区域(省份名称)")
|
|
|
+ @TableField(exist = false)
|
|
|
private String areaName;
|
|
|
+
|
|
|
@ApiModelProperty(value = "适用区域")
|
|
|
+ @TableField(exist = false)
|
|
|
private String areaNum;
|
|
|
|
|
|
@ApiModelProperty(value = "运营商 1 : 移动 2 : 电信 3 : 联通")
|
|
|
+ @TableField(exist = false)
|
|
|
private Integer operator;
|
|
|
|
|
|
|