12345678910111213141516171819202122232425 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 系统单位查看
- */
- public class A_ES0019 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String gutId;//单位组Id
- /**
- *单位组Id
- */
- public void setGutId(String gutId) {
- this.gutId=gutId;
- }
- /**
- *单位组Id
- */
- public String getGutId() {
- return this.gutId;
- }
- }
|