1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 无锡发动机
- */
- 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;
- }
- String gsutId;//单位组配置
- /**
- *单位组配置
- */
- public void setGsutId(String gsutId) {
- this.gsutId=gsutId;
- }
- /**
- *单位组配置
- */
- public String getGsutId() {
- return this.gsutId;
- }
- String utId;//默认单位Id
- /**
- *默认单位Id
- */
- public void setUtId(String utId) {
- this.utId=utId;
- }
- /**
- *默认单位Id
- */
- public String getUtId() {
- return this.utId;
- }
- }
|