package com.qianwen.mdc.dto;
|
|
public class MachineProtocolDTO {
|
|
private Integer id;
|
|
|
private String name;
|
|
|
private String version;
|
|
|
private String account;
|
|
|
private String password;
|
|
|
private String commentKey;
|
|
|
private String remark;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
|
public String getName() {
|
return name;
|
}
|
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
|
public String getVersion() {
|
return version;
|
}
|
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
|
public String getAccount() {
|
return account;
|
}
|
|
public void setAccount(String account) {
|
this.account = account;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public String getCommentKey() {
|
return commentKey;
|
}
|
|
public void setCommentKey(String commentKey) {
|
this.commentKey = commentKey;
|
}
|
|
|
public String getRemark() {
|
return remark;
|
}
|
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
}
|