AppAnnounceEntity.java 3.67 KB
package com.hmit.kernes.entity;

import java.util.Date;
import java.util.List;

public class AppAnnounceEntity {
    private Long id;
    private int type;
    private Long unionId;
    private Date postTime;
    private String actName;
    private String actAddress;
    private String fileSrc;
    private Date updateTime;
    private String makerName;
    private String makerTel;
    private String actDetail;
    private Integer isShow;
    private String dictA;
    private String dictANickname;
    private String dictB;
    private String dictBNickname;
    private String dictC;
    private String dictCNickname;

    public Integer getIsShow() {
        return isShow;
    }

    public void setIsShow(Integer isShow) {
        this.isShow = isShow;
    }

    public String getDictA() {
        return dictA;
    }

    public void setDictA(String dictA) {
        this.dictA = dictA;
    }

    public String getDictANickname() {
        return dictANickname;
    }

    public void setDictANickname(String dictANickname) {
        this.dictANickname = dictANickname;
    }

    public String getDictB() {
        return dictB;
    }

    public void setDictB(String dictB) {
        this.dictB = dictB;
    }

    public String getDictBNickname() {
        return dictBNickname;
    }

    public void setDictBNickname(String dictBNickname) {
        this.dictBNickname = dictBNickname;
    }

    public String getDictC() {
        return dictC;
    }

    public void setDictC(String dictC) {
        this.dictC = dictC;
    }

    public String getDictCNickname() {
        return dictCNickname;
    }

    public void setDictCNickname(String dictCNickname) {
        this.dictCNickname = dictCNickname;
    }

    private List<AppAnnounceMapEntity> list;

    public List<AppAnnounceMapEntity> getList() {
        return list;
    }


    public String getActAddress() {
        return actAddress;
    }

    public void setActAddress(String actAddress) {
        this.actAddress = actAddress;
    }

    public String getActDetail() {
        return actDetail;
    }

    public void setActDetail(String actDetail) {
        this.actDetail = actDetail;
    }

    public void setList(List<AppAnnounceMapEntity> list) {
        this.list = list;
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public Long getUnionId() {
        return unionId;
    }

    public void setUnionId(Long unionId) {
        this.unionId = unionId;
    }

    public Date getPostTime() {
        return postTime;
    }

    public void setPostTime(Date postTime) {
        this.postTime = postTime;
    }

    public String getActName() {
        return actName;
    }

    public void setActName(String actName) {
        this.actName = actName;
    }

    public String getFileSrc() {
        return fileSrc;
    }

    public void setFileSrc(String fileSrc) {
        this.fileSrc = fileSrc;
    }

    public Date getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    public String getMakerName() {
        return makerName;
    }

    public void setMakerName(String makerName) {
        this.makerName = makerName;
    }

    public String getMakerTel() {
        return makerTel;
    }

    public void setMakerTel(String makerTel) {
        this.makerTel = makerTel;
    }
}