1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 灾情演练
- */
- public class A_D00008 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int aid;//事故Id
- /**
- *事故Id
- */
- public void setAid(int aid) {
- this.aid=aid;
- }
- /**
- *事故Id
- */
- public int getAid() {
- return this.aid;
- }
- String stype;//火灾类型
- /**
- *火灾类型
- */
- public void setStype(String stype) {
- this.stype=stype;
- }
- /**
- *火灾类型
- */
- public String getStype() {
- return this.stype;
- }
- }
|