package com.vci.ubcs.code.vo.pagemodel;
|
|
import com.vci.ubcs.starter.revision.model.BaseModel;
|
|
/**
|
* 固定码段的码值显示对象
|
*
|
* @author weidy
|
* @date 2022-01-24
|
*/
|
public class CodeFixedValueVO extends BaseModel {
|
|
/**
|
* 禁止修改这个值
|
*/
|
private static final long serialVersionUID = 4615707117767594607L;
|
|
/**
|
* 固定码段主键
|
*/
|
private String codeFixedSecOid;
|
|
/**
|
* 固定码段主键显示文本
|
*/
|
private String codefixedsecoidName;
|
|
/**
|
* 码值序号
|
*/
|
private Integer orderNum;
|
|
/**
|
* 获取 固定码段主键
|
*/
|
public String getCodeFixedSecOid (){
|
return codeFixedSecOid;
|
}
|
|
/**
|
* 设置 固定码段主键
|
*/
|
public void setCodeFixedSecOid (String codefixedsecoid){
|
this.codeFixedSecOid = codefixedsecoid;
|
}
|
/**
|
* 获取固定码段主键显示文本
|
*/
|
public String getCodefixedsecoidName (){
|
return codefixedsecoidName;
|
}
|
|
/**
|
* 设置固定码段主键显示文本
|
*/
|
public void setCodefixedsecoidName (String codefixedsecoidName){
|
this.codefixedsecoidName = codefixedsecoidName;
|
}
|
/**
|
* 获取 码值序号
|
*/
|
public Integer getOrderNum (){
|
return orderNum;
|
}
|
|
/**
|
* 设置 码值序号
|
*/
|
public void setOrderNum (Integer orderNum){
|
this.orderNum = orderNum;
|
}
|
|
@Override
|
public String toString() {
|
return "CodeFixedValueVO{" +
|
"codeFixedSecOid='" + codeFixedSecOid +"'," +
|
"codefixedsecoidName='" + codefixedsecoidName +"'," +
|
"orderNum='" + orderNum +"'," +
|
"}" + super.toString();
|
}
|
}
|