123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 模板添加修改
- */
- public class A_MDO0006 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String mid;//模版ID
- /**
- *模版ID
- */
- public void setMid(String mid) {
- this.mid=mid;
- }
- /**
- *模版ID
- */
- public String getMid() {
- return this.mid;
- }
- String name;//名称
- /**
- *名称
- */
- public void setName(String name) {
- this.name=name;
- }
- /**
- *名称
- */
- public String getName() {
- return this.name;
- }
- String remark;//描述
- /**
- *描述
- */
- public void setRemark(String remark) {
- this.remark=remark;
- }
- /**
- *描述
- */
- public String getRemark() {
- return this.remark;
- }
- String image;//图片base64
- /**
- *图片base64
- */
- public void setImage(String image) {
- this.image=image;
- }
- /**
- *图片base64
- */
- public String getImage() {
- return this.image;
- }
- String isshare;//
- /**
- *
- */
- public void setIsshare(String isshare) {
- this.isshare=isshare;
- }
- /**
- *
- */
- public String getIsshare() {
- return this.isshare;
- }
- String flow;//流程图
- /**
- *流程图
- */
- public void setFlow(String flow) {
- this.flow=flow;
- }
- /**
- *流程图
- */
- public String getFlow() {
- return this.flow;
- }
- int type;//1-函数优化模版 2-翼型优化模版 3-机翼优化模版
- /**
- *1-函数优化模版 2-翼型优化模版 3-机翼优化模版
- */
- public void setType(int type) {
- this.type=type;
- }
- /**
- *1-函数优化模版 2-翼型优化模版 3-机翼优化模版
- */
- public int getType() {
- return this.type;
- }
- String image2;//图片base64
- /**
- *图片base64
- */
- public void setImage2(String image2) {
- this.image2=image2;
- }
- /**
- *图片base64
- */
- public String getImage2() {
- return this.image2;
- }
- }
|