@@ -15,7 +15,7 @@ public class AflProductInfoFindPageRequest extends JpaPageableDataRequest<AflPro | |||
/** 产品名称 */ | |||
private String productName ; | |||
/** 签约渠道名称 */ | |||
private String ChannelName ; | |||
private String channelName ; | |||
/** 上架时间开始时间 */ | |||
private Date groundTimeStart ; | |||
/** 上架时间结束时间 */ | |||
@@ -61,8 +61,8 @@ public class AflProductInfoFindPageRequest extends JpaPageableDataRequest<AflPro | |||
if (!StringUtils.isEmpty(productName)){ | |||
builder.append(" AND api.productName LIKE :productName", like(productName)); | |||
} | |||
if (!StringUtils.isEmpty(ChannelName)){ | |||
builder.append(" AND asci.channelName LIKE :ChannelsName",like(ChannelName)); | |||
if (!StringUtils.isEmpty(channelName)){ | |||
builder.append(" AND asci.channelName LIKE :ChannelsName",like(channelName)); | |||
} | |||
if (groundTimeStart != null){ | |||
builder.append(" AND api.groundTime >= :groundTimeStart", groundTimeStart); | |||
@@ -107,11 +107,11 @@ public class AflProductInfoFindPageRequest extends JpaPageableDataRequest<AflPro | |||
} | |||
public String getChannelName() { | |||
return ChannelName; | |||
return channelName; | |||
} | |||
public void setChannelName(String channelName) { | |||
ChannelName = channelName; | |||
this.channelName = channelName; | |||
} | |||
public Date getGroundTimeStart() { |
@@ -14,7 +14,7 @@ public class AflProductInfoFindPageViweRequest extends AbstractAfterSalesPageReq | |||
/** 产品名称 */ | |||
private String productName ; | |||
/** 签约渠道名称 */ | |||
private String ChannelName ; | |||
private String channelName ; | |||
/** 上架时间开始时间 */ | |||
private Date groundTimeStart ; | |||
/** 上架时间结束时间 */ | |||
@@ -49,11 +49,11 @@ public class AflProductInfoFindPageViweRequest extends AbstractAfterSalesPageReq | |||
} | |||
public String getChannelName() { | |||
return ChannelName; | |||
return channelName; | |||
} | |||
public void setChannelName(String channelName) { | |||
ChannelName = channelName; | |||
this.channelName = channelName; | |||
} | |||
public Date getGroundTimeStart() { |
@@ -12,7 +12,7 @@ public class AflProductInfoFindPageVo extends BaseModel { | |||
/** 产品名称 */ | |||
private String productName ; | |||
/** 签约渠道名称 */ | |||
private String ChannelName ; | |||
private String channelName ; | |||
/** 签约服务费(单位分) */ | |||
private Integer signServiceCharge ; | |||
/** 通行服务费(比例) */ | |||
@@ -37,7 +37,7 @@ public class AflProductInfoFindPageVo extends BaseModel { | |||
this.id = id; | |||
this.productCode = productCode; | |||
this.productName = productName; | |||
ChannelName = channelName; | |||
this.channelName = channelName; | |||
this.signServiceCharge = signServiceCharge; | |||
this.throughServiceCharge = throughServiceCharge; | |||
this.productEffectiveTime = productEffectiveTime; | |||
@@ -73,11 +73,11 @@ public class AflProductInfoFindPageVo extends BaseModel { | |||
} | |||
public String getChannelName() { | |||
return ChannelName; | |||
return channelName; | |||
} | |||
public void setChannelName(String channelName) { | |||
ChannelName = channelName; | |||
this.channelName = channelName; | |||
} | |||
public Integer getSignServiceCharge() { |