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