123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- package com.miniframe.model.system;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import java.util.Date;
- import javax.persistence.*;
- @Table(name = "adi_solver_config_img")
- public class AdiSolverConfigImg extends MiniserviceBaseModel implements Serializable {
- /**
- * 求解器配ID
- */
- @Id
- private String id;
- /**
- * 用户编码
- */
- private String uid;
- /**
- * 项目ID
- */
- private String pid;
- /**
- * 求解配置Id
- */
- @Column(name = "solver_config_id")
- private String solverConfigId;
- private String img;
- /**
- * 步数
- */
- private String step;
- /**
- * 创建时间
- */
- @Column(name = "create_time")
- private Date createTime;
- /**
- * 前处理 pre后处理 post
- */
- private String type;
- private String action;
- private String animationtype;
- private static final long serialVersionUID = 1L;
- /**
- * 获取求解器配ID
- *
- * @return id - 求解器配ID
- */
- public String getId() {
- return id;
- }
- /**
- * 设置求解器配ID
- *
- * @param id 求解器配ID
- */
- public void setId(String id) {
- this.id = id == null ? null : id.trim();
- }
- /**
- * 获取用户编码
- *
- * @return uid - 用户编码
- */
- public String getUid() {
- return uid;
- }
- /**
- * 设置用户编码
- *
- * @param uid 用户编码
- */
- public void setUid(String uid) {
- this.uid = uid == null ? null : uid.trim();
- }
- /**
- * 获取项目ID
- *
- * @return pid - 项目ID
- */
- public String getPid() {
- return pid;
- }
- /**
- * 设置项目ID
- *
- * @param pid 项目ID
- */
- public void setPid(String pid) {
- this.pid = pid == null ? null : pid.trim();
- }
- /**
- * 获取求解配置Id
- *
- * @return solver_config_id - 求解配置Id
- */
- public String getSolverConfigId() {
- return solverConfigId;
- }
- /**
- * 设置求解配置Id
- *
- * @param solverConfigId 求解配置Id
- */
- public void setSolverConfigId(String solverConfigId) {
- this.solverConfigId = solverConfigId == null ? null : solverConfigId.trim();
- }
- /**
- * @return img
- */
- public String getImg() {
- return img;
- }
- /**
- * @param img
- */
- public void setImg(String img) {
- this.img = img == null ? null : img.trim();
- }
- /**
- * 获取步数
- *
- * @return step - 步数
- */
- public String getStep() {
- return step;
- }
- /**
- * 设置步数
- *
- * @param step 步数
- */
- public void setStep(String step) {
- this.step = step == null ? null : step.trim();
- }
- /**
- * 获取创建时间
- *
- * @return create_time - 创建时间
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * 设置创建时间
- *
- * @param createTime 创建时间
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * 获取前处理 pre后处理 post
- *
- * @return type - 前处理 pre后处理 post
- */
- public String getType() {
- return type;
- }
- /**
- * 设置前处理 pre后处理 post
- *
- * @param type 前处理 pre后处理 post
- */
- public void setType(String type) {
- this.type = type == null ? null : type.trim();
- }
- /**
- * @return action
- */
- public String getAction() {
- return action;
- }
- /**
- * @param action
- */
- public void setAction(String action) {
- this.action = action == null ? null : action.trim();
- }
- /**
- * @return animationtype
- */
- public String getAnimationtype() {
- return animationtype;
- }
- /**
- * @param animationtype
- */
- public void setAnimationtype(String animationtype) {
- this.animationtype = animationtype == null ? null : animationtype.trim();
- }
- }
|