123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 单位系统单位组值查看->数据
- */
- public class D_ES0025_ROWS_RECODE extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String nameEn;//单位组英文名
- /**
- *单位组英文名
- */
- public void setNameEn(String nameEn) {
- this.nameEn=nameEn;
- }
- /**
- *单位组英文名
- */
- public String getNameEn() {
- return this.nameEn;
- }
- String nameZn;//单位组中文名
- /**
- *单位组中文名
- */
- public void setNameZn(String nameZn) {
- this.nameZn=nameZn;
- }
- /**
- *单位组中文名
- */
- public String getNameZn() {
- return this.nameZn;
- }
- String sutId;//系统单位编号
- /**
- *系统单位编号
- */
- public void setSutId(String sutId) {
- this.sutId=sutId;
- }
- /**
- *系统单位编号
- */
- public String getSutId() {
- return this.sutId;
- }
- String gutId;//单位组id
- /**
- *单位组id
- */
- public void setGutId(String gutId) {
- this.gutId=gutId;
- }
- /**
- *单位组id
- */
- public String getGutId() {
- return this.gutId;
- }
- String utId;//默认单位Id
- /**
- *默认单位Id
- */
- public void setUtId(String utId) {
- this.utId=utId;
- }
- /**
- *默认单位Id
- */
- public String getUtId() {
- return this.utId;
- }
- String value;//默认单位值
- /**
- *默认单位值
- */
- public void setValue(String value) {
- this.value=value;
- }
- /**
- *默认单位值
- */
- public String getValue() {
- return this.value;
- }
- String gsutId;//单位组配置
- /**
- *单位组配置
- */
- public void setGsutId(String gsutId) {
- this.gsutId=gsutId;
- }
- /**
- *单位组配置
- */
- public String getGsutId() {
- return this.gsutId;
- }
- }
|