Skip to content

Commit

Permalink
🎨 优化代码,增加点注解
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Apr 10, 2022
1 parent 76f6826 commit db8c26b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
* @author Boris
*/
@Data
@Accessors(chain = true)
public class VisibleRange implements Serializable {
private static final long serialVersionUID = 5356285705365931051L;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package me.chanjar.weixin.cp.bean.external.msg;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

Expand All @@ -11,6 +12,7 @@
* @date 2020-08-16
*/
@Data
@Accessors(chain = true)
public class Text implements Serializable {
private static final long serialVersionUID = 6608288753719551600L;
private String content;
Expand Down

0 comments on commit db8c26b

Please sign in to comment.