You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
443 B
22 lines
443 B
2 years ago
|
package com.ynxbd.wx.wxfactory.menu.bean;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
@Getter
|
||
|
@Setter
|
||
|
@NoArgsConstructor
|
||
|
@ToString
|
||
|
public class WxMenuRule {
|
||
|
private String tag_id;
|
||
|
private String sex;
|
||
|
private String country;
|
||
|
private String province;
|
||
|
private String city;
|
||
|
private String client_platform_type;
|
||
|
private String language;
|
||
|
|
||
|
}
|