123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 预设路径添加修改
- */
- public class A_D10031 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int wid;//路径ID
- /**
- *路径ID
- */
- public void setWid(int wid) {
- this.wid=wid;
- }
- /**
- *路径ID
- */
- public int getWid() {
- return this.wid;
- }
- String name;//名称
- /**
- *名称
- */
- public void setName(String name) {
- this.name=name;
- }
- /**
- *名称
- */
- public String getName() {
- return this.name;
- }
- String code;//编号
- /**
- *编号
- */
- public void setCode(String code) {
- this.code=code;
- }
- /**
- *编号
- */
- public String getCode() {
- return this.code;
- }
- }
|