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.
23 lines
437 B
23 lines
437 B
package com.ynxbd.common.bean;
|
|
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
public class SelfHelp {
|
|
private Long id;
|
|
private String openid;
|
|
private Date updateTime;
|
|
private Integer noticeState;
|
|
private String treatNum;
|
|
// 调用编码
|
|
private String code;
|
|
|
|
}
|
|
|