提交分组地理信息管理.

This commit is contained in:
zhangwq
2018-10-16 18:59:30 +08:00
parent d392d7cdb6
commit b4668c734b
11 changed files with 670 additions and 2 deletions

View File

@@ -0,0 +1,47 @@
package com.nis.domain.configuration;
import java.io.Serializable;
import java.util.Date;
/**
* 分组地理信息
*/
public class GroupAreaInfo extends BaseCfg<GroupAreaInfo> implements Serializable{
private static final long serialVersionUID = 3312689200711339511L;
private Long id;
private Integer groupId;
private Integer areaCode;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Integer getGroupId() {
return groupId;
}
public void setGroupId(Integer groupId) {
this.groupId = groupId;
}
public Integer getAreaCode() {
return areaCode;
}
public void setAreaCode(Integer areaCode) {
this.areaCode = areaCode;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getEditTime() {
return editTime;
}
public void setEditTime(Date editTime) {
this.editTime = editTime;
}
}