12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 系统单位列表查看->数据
- */
- public class D_ES0021_ROWS_RECODE extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String gutId;//单位组编号
- /**
- *单位组编号
- */
- public void setGutId(String gutId) {
- this.gutId=gutId;
- }
- /**
- *单位组编号
- */
- public String getGutId() {
- return this.gutId;
- }
- String nameZh;//单位表中文名
- /**
- *单位表中文名
- */
- public void setNameZh(String nameZh) {
- this.nameZh=nameZh;
- }
- /**
- *单位表中文名
- */
- public String getNameZh() {
- return this.nameZh;
- }
- String nameEn;//单位表英文名
- /**
- *单位表英文名
- */
- public void setNameEn(String nameEn) {
- this.nameEn=nameEn;
- }
- /**
- *单位表英文名
- */
- public String getNameEn() {
- return this.nameEn;
- }
- int ser;//序号
- /**
- *序号
- */
- public void setSer(int ser) {
- this.ser=ser;
- }
- /**
- *序号
- */
- public int getSer() {
- return this.ser;
- }
- }
|