123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 单位系统添加
- */
- public class A_ES0020 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- 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;
- }
- String sutId;//单位系统编号
- /**
- *单位系统编号
- */
- public void setSutId(String sutId) {
- this.sutId=sutId;
- }
- /**
- *单位系统编号
- */
- public String getSutId() {
- return this.sutId;
- }
- }
|