123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 系统单位默认值设置
- */
- public class A_ES0022 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String value;//单位值
- /**
- *单位值
- */
- public void setValue(String value) {
- this.value=value;
- }
- /**
- *单位值
- */
- public String getValue() {
- return this.value;
- }
- String gutId;//单位组编号
- /**
- *单位组编号
- */
- public void setGutId(String gutId) {
- this.gutId=gutId;
- }
- /**
- *单位组编号
- */
- public String getGutId() {
- return this.gutId;
- }
- String sutId;//系统单位编号
- /**
- *系统单位编号
- */
- public void setSutId(String sutId) {
- this.sutId=sutId;
- }
- /**
- *系统单位编号
- */
- public String getSutId() {
- return this.sutId;
- }
- }
|