|
|
|
@@ -48,6 +48,10 @@ public class WxScreenAd implements Serializable { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="广告类型",name="type") |
|
|
|
private Integer type; |
|
|
|
|
|
|
|
/**广告子类型 (券渠道)**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="广告子类型",name="subType") |
|
|
|
private Integer subType; |
|
|
|
|
|
|
|
/**广告状态**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="设备状态",name="status") |
|
|
|
private Integer status; |
|
|
|
@@ -91,6 +95,14 @@ public class WxScreenAd implements Serializable { |
|
|
|
this.type = type; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getSubType() { |
|
|
|
return subType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSubType(Integer subType) { |
|
|
|
this.subType = subType; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getStatus() { |
|
|
|
return status; |
|
|
|
} |
|
|
|
@@ -152,6 +164,7 @@ public class WxScreenAd implements Serializable { |
|
|
|
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") |
|
|
|
,TenantId_ASC("`tenant_id` ASC"),TenantId_DESC("`tenant_id` DESC") |
|
|
|
,Type_ASC("`type` ASC"),Type_DESC("`type` DESC") |
|
|
|
,SubType_ASC("`sub_type` ASC"),SubType_DESC("`sub_type` DESC") |
|
|
|
,Status_ASC("`status` ASC"),Status_DESC("`status` DESC") |
|
|
|
,CreateDate_ASC("`create_date` ASC"),CreateDate_DESC("`create_date` DESC") |
|
|
|
,UpdateDate_ASC("`update_date` ASC"),UpdateDate_DESC("`update_date` DESC") |
|
|
|
|