| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 | /** * 系统服务 */package com.miniframe.generate.comm.mdo;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 进化优化器参数添加修改 */public class A_MDO0019 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String eid;//进化器参数ID	/**	 *进化器参数ID	 */	public void setEid(String eid) {		this.eid=eid;	}	/**	 *进化器参数ID	 */	public String getEid() {		return this.eid;	}	String pid;//项目ID	/**	 *项目ID	 */	public void setPid(String pid) {		this.pid=pid;	}	/**	 *项目ID	 */	public String getPid() {		return this.pid;	}	String algorithm;//优化算法	/**	 *优化算法	 */	public void setAlgorithm(String algorithm) {		this.algorithm=algorithm;	}	/**	 *优化算法	 */	public String getAlgorithm() {		return this.algorithm;	}	String popsize;//种群规模	/**	 *种群规模	 */	public void setPopsize(String popsize) {		this.popsize=popsize;	}	/**	 *种群规模	 */	public String getPopsize() {		return this.popsize;	}	String epoch;//迭代次数	/**	 *迭代次数	 */	public void setEpoch(String epoch) {		this.epoch=epoch;	}	/**	 *迭代次数	 */	public String getEpoch() {		return this.epoch;	}	String probcrossover;//交叉概率	/**	 *交叉概率	 */	public void setProbcrossover(String probcrossover) {		this.probcrossover=probcrossover;	}	/**	 *交叉概率	 */	public String getProbcrossover() {		return this.probcrossover;	}	String probmut;//变异概率	/**	 *变异概率	 */	public void setProbmut(String probmut) {		this.probmut=probmut;	}	/**	 *变异概率	 */	public String getProbmut() {		return this.probmut;	}	String proboperator;//交叉算子	/**	 *交叉算子	 */	public void setProboperator(String proboperator) {		this.proboperator=proboperator;	}	/**	 *交叉算子	 */	public String getProboperator() {		return this.proboperator;	}	String probscale;//竞赛规模	/**	 *竞赛规模	 */	public void setProbscale(String probscale) {		this.probscale=probscale;	}	/**	 *竞赛规模	 */	public String getProbscale() {		return this.probscale;	}	String strategy;//保留优选策略	/**	 *保留优选策略	 */	public void setStrategy(String strategy) {		this.strategy=strategy;	}	/**	 *保留优选策略	 */	public String getStrategy() {		return this.strategy;	}	String operator;//变异算子选择	/**	 *变异算子选择	 */	public void setOperator(String operator) {		this.operator=operator;	}	/**	 *变异算子选择	 */	public String getOperator() {		return this.operator;	}	String gpu;//GPU加速	/**	 *GPU加速	 */	public void setGpu(String gpu) {		this.gpu=gpu;	}	/**	 *GPU加速	 */	public String getGpu() {		return this.gpu;	}	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;	}}
 |