admin
2021-04-28 a7454d8a6325566753358b37ffabfae2faa0ca7f
fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDSearchRange.java
@@ -1,48 +1,48 @@
package com.yeshi.fanli.dto.pdd;
public class PDDSearchRange{
   private Long range_from; // 区间的开始值
   private Long range_to; // 区间的结束值
   private Integer range_id; // 0,最小成团价 1,券后价 2,佣金比例 3,优惠券价格 4,广告创建时间 5,销量 6,佣金金额 7,店铺描述分 8,店铺物流分 9,店铺服务分
                     // 10, 店铺描述分击败同行业百分比 11, 店铺物流分击败同行业百分比 12,店铺服务分击败同行业百分比 13,商品分 17 ,优惠券/最小团购价 18,过去两小时pv 19,过去两小时销量
   public PDDSearchRange() {}
   public PDDSearchRange(Long range_from, Integer range_id) {
      this.range_from = range_from;
      this.range_id = range_id;
   }
   public PDDSearchRange(Integer range_id, Long range_to) {
      this.range_id = range_id;
      this.range_to = range_to;
   }
   public PDDSearchRange(Long range_from, Integer range_id, Long range_to) {
      this.range_from = range_from;
      this.range_id = range_id;
      this.range_to = range_to;
   }
   public Long getrange_from() {
      return range_from;
   }
   public void setrange_from(Long range_from) {
      this.range_from = range_from;
   }
   public Long getrange_to() {
      return range_to;
   }
   public void setrange_to(Long range_to) {
      this.range_to = range_to;
   }
   public Integer getrange_id() {
      return range_id;
   }
   public void setrange_id(Integer range_id) {
      this.range_id = range_id;
   }
}
package com.yeshi.fanli.dto.pdd;
public class PDDSearchRange{
   private Long range_from; // 区间的开始值
   private Long range_to; // 区间的结束值
   private Integer range_id; // 0,最小成团价 1,券后价 2,佣金比例 3,优惠券价格 4,广告创建时间 5,销量 6,佣金金额 7,店铺描述分 8,店铺物流分 9,店铺服务分
                     // 10, 店铺描述分击败同行业百分比 11, 店铺物流分击败同行业百分比 12,店铺服务分击败同行业百分比 13,商品分 17 ,优惠券/最小团购价 18,过去两小时pv 19,过去两小时销量
   public PDDSearchRange() {}
   public PDDSearchRange(Long range_from, Integer range_id) {
      this.range_from = range_from;
      this.range_id = range_id;
   }
   public PDDSearchRange(Integer range_id, Long range_to) {
      this.range_id = range_id;
      this.range_to = range_to;
   }
   public PDDSearchRange(Long range_from, Integer range_id, Long range_to) {
      this.range_from = range_from;
      this.range_id = range_id;
      this.range_to = range_to;
   }
   public Long getrange_from() {
      return range_from;
   }
   public void setrange_from(Long range_from) {
      this.range_from = range_from;
   }
   public Long getrange_to() {
      return range_to;
   }
   public void setrange_to(Long range_to) {
      this.range_to = range_to;
   }
   public Integer getrange_id() {
      return range_id;
   }
   public void setrange_id(Integer range_id) {
      this.range_id = range_id;
   }
}