1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 事故数据添加
- */
- public class A_D00002 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String source;//事故来源
- /**
- *事故来源
- */
- public void setSource(String source) {
- this.source=source;
- }
- /**
- *事故来源
- */
- public String getSource() {
- return this.source;
- }
- String type;//事故类型
- /**
- *事故类型
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *事故类型
- */
- public String getType() {
- return this.type;
- }
- String name;//事故名称
- /**
- *事故名称
- */
- public void setName(String name) {
- this.name=name;
- }
- /**
- *事故名称
- */
- public String getName() {
- return this.name;
- }
- String sid;//事故来源ID
- /**
- *事故来源ID
- */
- public void setSid(String sid) {
- this.sid=sid;
- }
- /**
- *事故来源ID
- */
- public String getSid() {
- return this.sid;
- }
- String stype;//灾情类型
- /**
- *灾情类型
- */
- public void setStype(String stype) {
- this.stype=stype;
- }
- /**
- *灾情类型
- */
- public String getStype() {
- return this.stype;
- }
- }
|