package com.ruoyi.gps.domain;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* GPS分组信息
|
*/
|
public class GpsGroup implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/** 分组ID */
|
private Integer groupid;
|
|
/** 分组名称 */
|
private String groupname;
|
|
/** 分组备注 */
|
private String remark;
|
|
/** 设备列表 */
|
private List<GpsDevice> devices;
|
|
public Integer getGroupid() {
|
return groupid;
|
}
|
|
public void setGroupid(Integer groupid) {
|
this.groupid = groupid;
|
}
|
|
public String getGroupname() {
|
return groupname;
|
}
|
|
public void setGroupname(String groupname) {
|
this.groupname = groupname;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public List<GpsDevice> getDevices() {
|
return devices;
|
}
|
|
public void setDevices(List<GpsDevice> devices) {
|
this.devices = devices;
|
}
|
}
|