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

修改bug

parent 792259bd
......@@ -78,13 +78,7 @@ public class ApiBaseDto implements Serializable {
private List<String> apiGroupCodeList;
public Integer getApiPromotion() {
return apiPromotion;
}
public void setApiPromotion(Integer apiPromotion) {
this.apiPromotion = apiPromotion;
}
public String getApiCode() {
return apiCode;
......
......@@ -33,8 +33,8 @@ public class TenantDto implements Serializable {
@ApiModelProperty("建设单位")
private String tenantUnit;
// @ApiModelProperty("推广类型0:统建;1:自建")
// private Integer apiPromotion;
@ApiModelProperty("推广类型0:统建;1:自建")
private Integer tenantPromotion;
@ApiModelProperty("注册时段-开始")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
......@@ -165,4 +165,12 @@ public class TenantDto implements Serializable {
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTenantPromotion() {
return tenantPromotion;
}
public void setTenantPromotion(Integer tenantPromotion) {
this.tenantPromotion = tenantPromotion;
}
}
......@@ -51,6 +51,10 @@
and otb.tenant_unit = #{tenantUnit}
</if>
<if test="tenantPromotion !=null ">
and otb.tenant_promotion = #{tenantPromotion}
</if>
<if test="startCTime !=null ">
<![CDATA[
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