Commit 368d903a authored by 郭凡凡's avatar 郭凡凡

修改bug

parent 792259bd
...@@ -78,13 +78,7 @@ public class ApiBaseDto implements Serializable { ...@@ -78,13 +78,7 @@ public class ApiBaseDto implements Serializable {
private List<String> apiGroupCodeList; private List<String> apiGroupCodeList;
public Integer getApiPromotion() {
return apiPromotion;
}
public void setApiPromotion(Integer apiPromotion) {
this.apiPromotion = apiPromotion;
}
public String getApiCode() { public String getApiCode() {
return apiCode; return apiCode;
......
...@@ -33,8 +33,8 @@ public class TenantDto implements Serializable { ...@@ -33,8 +33,8 @@ public class TenantDto implements Serializable {
@ApiModelProperty("建设单位") @ApiModelProperty("建设单位")
private String tenantUnit; private String tenantUnit;
// @ApiModelProperty("推广类型0:统建;1:自建") @ApiModelProperty("推广类型0:统建;1:自建")
// private Integer apiPromotion; private Integer tenantPromotion;
@ApiModelProperty("注册时段-开始") @ApiModelProperty("注册时段-开始")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
...@@ -165,4 +165,12 @@ public class TenantDto implements Serializable { ...@@ -165,4 +165,12 @@ public class TenantDto implements Serializable {
public void setCurrentPage(Integer currentPage) { public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage; this.currentPage = currentPage;
} }
public Integer getTenantPromotion() {
return tenantPromotion;
}
public void setTenantPromotion(Integer tenantPromotion) {
this.tenantPromotion = tenantPromotion;
}
} }
...@@ -51,6 +51,10 @@ ...@@ -51,6 +51,10 @@
and otb.tenant_unit = #{tenantUnit} and otb.tenant_unit = #{tenantUnit}
</if> </if>
<if test="tenantPromotion !=null ">
and otb.tenant_promotion = #{tenantPromotion}
</if>
<if test="startCTime !=null "> <if test="startCTime !=null ">
<![CDATA[ <![CDATA[
and otb.tenant_ctime >= #{startCTime} and otb.tenant_ctime >= #{startCTime}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment