123456789101112131415161718192021222324252627282930313233343536 |
- package com.sysmodel.xformmodel.impl;
- import com.sysmodel.xformmodel.able.TbEtyma;
- public class TbEtymaImpl implements TbEtyma{
- private String name = "";
- private String abbreviation = "";
- private String description = "";
- public String getAbbreviation() {
- return abbreviation;
- }
- public void setAbbreviation(String abbreviation) {
- this.abbreviation = abbreviation;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
|