1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 报告导出
- */
- public class A_MDO0082 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String pid;//项目id
- /**
- *项目id
- */
- public void setPid(String pid) {
- this.pid=pid;
- }
- /**
- *项目id
- */
- public String getPid() {
- return this.pid;
- }
- int type;//1 pdf 2 word 3 html
- /**
- *1 pdf 2 word 3 html
- */
- public void setType(int type) {
- this.type=type;
- }
- /**
- *1 pdf 2 word 3 html
- */
- public int getType() {
- return this.type;
- }
- }
|