12345678910111213141516171819202122232425 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 获取协议
- */
- public class A_C00020 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String type;//类型(P001-注册协议)
- /**
- *类型(P001-注册协议)
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *类型(P001-注册协议)
- */
- public String getType() {
- return this.type;
- }
- }
|