Skip to content

Commit

Permalink
🎨 #1507 企业微信MpnewsArticle类增加构造方法,避免某些情况下报错
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Apr 18, 2020
1 parent ea444f2 commit d938182
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package me.chanjar.weixin.cp.bean.article;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

Expand All @@ -13,6 +15,8 @@
* @author Binary Wang
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder(builderMethodName = "newBuilder")
public class MpnewsArticle implements Serializable {
private static final long serialVersionUID = 6985871812170756481L;
Expand Down

0 comments on commit d938182

Please sign in to comment.