123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * ffd参数查询
- */
- public class D_MDO0043 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String ffdid;//ID
- /**
- *ID
- */
- public void setFfdid(String ffdid) {
- this.ffdid=ffdid;
- }
- /**
- *ID
- */
- public String getFfdid() {
- return this.ffdid;
- }
- String pid;//项目ID
- /**
- *项目ID
- */
- public void setPid(String pid) {
- this.pid=pid;
- }
- /**
- *项目ID
- */
- public String getPid() {
- return this.pid;
- }
- String fid;//上传文件ID
- /**
- *上传文件ID
- */
- public void setFid(String fid) {
- this.fid=fid;
- }
- /**
- *上传文件ID
- */
- public String getFid() {
- return this.fid;
- }
- String fname;//上传文件名称
- /**
- *上传文件名称
- */
- public void setFname(String fname) {
- this.fname=fname;
- }
- /**
- *上传文件名称
- */
- public String getFname() {
- return this.fname;
- }
- String order;//1xyz 2xzy 3yxz 4yzx 5zxy 6zyx
- /**
- *1xyz 2xzy 3yxz 4yzx 5zxy 6zyx
- */
- public void setOrder(String order) {
- this.order=order;
- }
- /**
- *1xyz 2xzy 3yxz 4yzx 5zxy 6zyx
- */
- public String getOrder() {
- return this.order;
- }
- String nx;//控制点数x
- /**
- *控制点数x
- */
- public void setNx(String nx) {
- this.nx=nx;
- }
- /**
- *控制点数x
- */
- public String getNx() {
- return this.nx;
- }
- String ny;//控制点数y
- /**
- *控制点数y
- */
- public void setNy(String ny) {
- this.ny=ny;
- }
- /**
- *控制点数y
- */
- public String getNy() {
- return this.ny;
- }
- String nz;//控制点数z
- /**
- *控制点数z
- */
- public void setNz(String nz) {
- this.nz=nz;
- }
- /**
- *控制点数z
- */
- public String getNz() {
- return this.nz;
- }
- String vars;//值已逗号分隔
- /**
- *值已逗号分隔
- */
- public void setVars(String vars) {
- this.vars=vars;
- }
- /**
- *值已逗号分隔
- */
- public String getVars() {
- return this.vars;
- }
- int checked;//是否选中1-选中 0-未选中
- /**
- *是否选中1-选中 0-未选中
- */
- public void setChecked(int checked) {
- this.checked=checked;
- }
- /**
- *是否选中1-选中 0-未选中
- */
- public int getChecked() {
- return this.checked;
- }
- String wid;//流程id
- /**
- *流程id
- */
- public void setWid(String wid) {
- this.wid=wid;
- }
- /**
- *流程id
- */
- public String getWid() {
- return this.wid;
- }
- }
|