1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * 气动设计
- */
- package com.miniframe.generate.comm.ac;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 结果曲线查询
- */
- public class A_AC00010 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;//类型0气动1结构2气弹
- /**
- *类型0气动1结构2气弹
- */
- public void setType(int type) {
- this.type=type;
- }
- /**
- *类型0气动1结构2气弹
- */
- public int getType() {
- return this.type;
- }
- }
|