Commit 40232b45 by 徐高华

朋友圈

parent 6ee2efa9
......@@ -276,6 +276,7 @@ public class QwMomentController {
vo.setPlanId(null);
vo.setPublishTime(null);
vo.setPublishType(1);
vo.setExpireDays(null);
return RestResponse.successResult(vo) ;
}
......
......@@ -40,7 +40,7 @@ public class HaobanQwMomentPlanVO implements Serializable {
/**
* 几天后失效
*/
private int expireDays;
private Integer expireDays;
/**
* 执行方式 0企微1好办小程序
*/
......@@ -198,11 +198,11 @@ public class HaobanQwMomentPlanVO implements Serializable {
this.endDate = endDate;
}
public int getExpireDays() {
public Integer getExpireDays() {
return expireDays;
}
public void setExpireDays(int expireDays) {
public void setExpireDays(Integer expireDays) {
this.expireDays = expireDays;
}
......
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