123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 基础字典查询->数据
- */
- public class D_BES001_ROWS_RECODE extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String type;//类型
- /**
- *类型
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *类型
- */
- public String getType() {
- return this.type;
- }
- String tag;//显示
- /**
- *显示
- */
- public void setTag(String tag) {
- this.tag=tag;
- }
- /**
- *显示
- */
- public String getTag() {
- return this.tag;
- }
- String val;//值
- /**
- *值
- */
- public void setVal(String val) {
- this.val=val;
- }
- /**
- *值
- */
- public String getVal() {
- return this.val;
- }
- }
|