| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | 
							- /**
 
-  * 系统服务
 
-  */
 
- package com.miniframe.generate.comm.system;
 
- import com.miniframe.core.BaseMapModel;
 
- import java.io.Serializable;
 
- /**
 
-  * 项目保存
 
-  */
 
- public class A_C00002 extends BaseMapModel implements Serializable {
 
- 	private static final long serialVersionUID = -1463838678425832212L;
 
- 	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;//图片ID
 
- 	/**
 
- 	 *图片ID
 
- 	 */
 
- 	public void setImage(String image) {
 
- 		this.image=image;
 
- 	}
 
- 	/**
 
- 	 *图片ID
 
- 	 */
 
- 	public String getImage() {
 
- 		return this.image;
 
- 	}
 
- 	int isshare;//是否公开
 
- 	/**
 
- 	 *是否公开
 
- 	 */
 
- 	public void setIsshare(int isshare) {
 
- 		this.isshare=isshare;
 
- 	}
 
- 	/**
 
- 	 *是否公开
 
- 	 */
 
- 	public int getIsshare() {
 
- 		return this.isshare;
 
- 	}
 
- }
 
 
  |