| | |
| | | */ |
| | | public class BaseEntity implements Serializable { |
| | | @TableId(type = IdType.AUTO) |
| | | private Long gid; |
| | | private Integer gid; |
| | | |
| | | private String eventid; |
| | | |
| | | private String parentid; |
| | | |
| | | private Integer dirid; |
| | | |
| | |
| | | public BaseEntity() { |
| | | } |
| | | |
| | | public Long getGid() { |
| | | public Integer getGid() { |
| | | return gid; |
| | | } |
| | | |
| | | public void setGid(Long gid) { |
| | | public void setGid(Integer gid) { |
| | | this.gid = gid; |
| | | } |
| | | |
| | |
| | | this.eventid = eventid; |
| | | } |
| | | |
| | | public String getParentid() { |
| | | return parentid; |
| | | } |
| | | |
| | | public void setParentid(String parentid) { |
| | | this.parentid = parentid; |
| | | } |
| | | |
| | | public Integer getDirid() { |
| | | return dirid; |
| | | } |