package com.artfess.uc.model;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.commons.lang.builder.ToStringBuilder;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
/**
*
*
* 描述:组织参数 实体对象
* 构建组:x5-bpmx-platform
* 作者:liyg
* 邮箱:liyg@jee-soft.cn
* 日期:2016-11-04 11:39:44
* 版权:广州宏天软件有限公司
*
*/
@TableName("UC_ORG_PARAMS")
@ApiModel(description="组织参数")
public class OrgParams extends UcBaseModel {
private static final long serialVersionUID = 1L;
/**
* ID_
*/
@TableId("ID_")
@ApiModelProperty(name="id",notes="参数id")
protected String id;
/**
* ORG_ID_
*/
@TableField("ORG_ID_")
@ApiModelProperty(name="orgId",notes="组织id")
protected String orgId;
/**
* ALIAS_
*/
@TableField("CODE_")
@ApiModelProperty(name="alias",notes="参数别名")
protected String alias;
/**
* VALUE_
*/
@TableField("VALUE_")
@ApiModelProperty(name="value",notes="参数值")
protected String value;
public void setId(String id) {
this.id = id;
}
/**
* 返回 ID_
* @return
*/
public String getId() {
return this.id;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
/**
* 返回 ORG_ID_
* @return
*/
public String getOrgId() {
return this.orgId;
}
public void setAlias(String alias) {
this.alias = alias;
}
/**
* 返回 ALIAS_
* @return
*/
public String getAlias() {
return this.alias;
}
public void setValue(String value) {
this.value = value;
}
/**
* 返回 VALUE_
* @return
*/
public String getValue() {
return this.value;
}
/**
* @see Object#toString()
*/
public String toString() {
return new ToStringBuilder(this)
.append("id", this.id)
.append("orgId", this.orgId)
.append("alias", this.alias)
.append("value", this.value)
.append("isDelete",this.isDelete)
.append("version",this.version)
.toString();
}
}