mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
プロパティ, コンストラクタ, Getter/Setter実装
This commit is contained in:
parent
0f6412c792
commit
26b0994343
|
@ -1,4 +1,51 @@
|
|||
package one.nem.lacerta.setting.model;
|
||||
|
||||
public class TagListItem {
|
||||
|
||||
String tagId;
|
||||
String tagName;
|
||||
String tagDescription;
|
||||
String tagColor;
|
||||
|
||||
public TagListItem(String tagId, String tagName, String tagDescription, String tagColor) {
|
||||
this.tagId = tagId;
|
||||
this.tagName = tagName;
|
||||
this.tagDescription = tagDescription;
|
||||
this.tagColor = tagColor;
|
||||
}
|
||||
|
||||
public TagListItem() {
|
||||
}
|
||||
|
||||
public String getTagId() {
|
||||
return tagId;
|
||||
}
|
||||
|
||||
public void setTagId(String tagId) {
|
||||
this.tagId = tagId;
|
||||
}
|
||||
|
||||
public String getTagName() {
|
||||
return tagName;
|
||||
}
|
||||
|
||||
public void setTagName(String tagName) {
|
||||
this.tagName = tagName;
|
||||
}
|
||||
|
||||
public String getTagDescription() {
|
||||
return tagDescription;
|
||||
}
|
||||
|
||||
public void setTagDescription(String tagDescription) {
|
||||
this.tagDescription = tagDescription;
|
||||
}
|
||||
|
||||
public String getTagColor() {
|
||||
return tagColor;
|
||||
}
|
||||
|
||||
public void setTagColor(String tagColor) {
|
||||
this.tagColor = tagColor;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user