admin
2021-07-03 ea68e8f8c00c0178037a9f1cc6dc1663bde913b8
facade-push/src/main/java/com/ks/push/pojo/DO/BPushAppInfo.java
@@ -11,11 +11,19 @@
 */
@Document(collection = "bpushAppInfo")
public class BPushAppInfo implements Serializable {
    //有效
    public final static int STATE_NORMAL = 0;
    //无效
    public final static int STATE_INVALID = 1;
    @Id
    private String appCode;
    private String name;
    private String desc;
    private Integer state;
    private String stateDesc;
    private String remarks;
    private Date createTime;
    private Date updateTime;
@@ -58,4 +66,28 @@
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
    public Integer getState() {
        return state;
    }
    public void setState(Integer state) {
        this.state = state;
    }
    public String getStateDesc() {
        return stateDesc;
    }
    public void setStateDesc(String stateDesc) {
        this.stateDesc = stateDesc;
    }
    public String getRemarks() {
        return remarks;
    }
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
}