1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package com.lstznkj.groundstation.DTO.ui;
- public class DeviceDTO {
- private int id;
- private String name;
- private String remark;
- private int fatherId;
- private int oldFatherId;
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public int getFatherId() {
- return fatherId;
- }
- public void setFatherId(int fatherId) {
- this.fatherId = fatherId;
- }
- public int getOldFatherId() {
- return oldFatherId;
- }
- public void setOldFatherId(int oldFatherId) {
- this.oldFatherId = oldFatherId;
- }
- }
|