package com.landtool.lanbase.modules.res.entity.UserDefined;
|
|
public class CatlogJoinActionrecord {
|
public Integer catlogid;
|
public String catlogcode;
|
public String Title;
|
public String ActionType;
|
public int Count;
|
|
public Integer getCatlogid() {
|
return catlogid;
|
}
|
|
public void setCatlogid(Integer catlogid) {
|
this.catlogid = catlogid;
|
}
|
|
public String getCatlogCode() {
|
return catlogcode;
|
}
|
|
public void setCatlogCode(String catlogcode) {
|
this.catlogcode = catlogcode;
|
}
|
|
public String getTitle() {
|
return Title;
|
}
|
|
public void setTitle(String title) {
|
Title = title;
|
}
|
|
public String getActionType() {
|
return ActionType;
|
}
|
|
public void setActionType(String actionType) {
|
ActionType = actionType;
|
}
|
|
public int getCount() {
|
return Count;
|
}
|
|
public void setCount(int count) {
|
Count = count;
|
}
|
}
|