package com.vci.ubcs.code.vo.webserviceModel.coderule;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
|
import java.util.List;
|
|
@XStreamAlias("codeSection")
|
public class CodeSectionVO {
|
/***
|
* 主键
|
*/
|
@XStreamAsAttribute
|
private String id;
|
|
/***
|
* 主键
|
*/
|
@XStreamAsAttribute
|
private String num;
|
/***
|
* 码段名称
|
*/
|
@XStreamAsAttribute
|
private String name;
|
/**
|
* 描述
|
*/
|
@XStreamAsAttribute
|
private String description;
|
|
|
/**
|
* 码段类型
|
*/
|
@XStreamAsAttribute
|
private String secType;
|
|
/**
|
* 所属编码规则
|
*/
|
@XStreamAsAttribute
|
private String pkCodeRule;
|
|
|
/**
|
* 码段长度类型
|
*/
|
@XStreamAsAttribute
|
private String codeSecLengthType;
|
|
|
|
/**
|
* 码段长度
|
*/
|
@XStreamAsAttribute
|
private String codeSecLength;
|
|
|
/**
|
* 父分类码段主键
|
*/
|
@XStreamAsAttribute
|
private String parentClassifySecOid;
|
|
/***
|
* 码段码值
|
*/
|
private List<CodeSectionValueVO> sectionValues;
|
/**
|
* 日期格式
|
*/
|
@XStreamAsAttribute
|
private String codeDateFormatStr;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getNum() {
|
return num;
|
}
|
|
public void setNum(String num) {
|
this.num = num;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getSecType() {
|
return secType;
|
}
|
|
public void setSecType(String secType) {
|
this.secType = secType;
|
}
|
|
public String getPkCodeRule() {
|
return pkCodeRule;
|
}
|
|
public void setPkCodeRule(String pkCodeRule) {
|
this.pkCodeRule = pkCodeRule;
|
}
|
|
public String getCodeSecLengthType() {
|
return codeSecLengthType;
|
}
|
|
public void setCodeSecLengthType(String codeSecLengthType) {
|
this.codeSecLengthType = codeSecLengthType;
|
}
|
|
public String getCodeSecLength() {
|
return codeSecLength;
|
}
|
|
public void setCodeSecLength(String codeSecLength) {
|
this.codeSecLength = codeSecLength;
|
}
|
|
public String getCodeDateFormatStr() {
|
return codeDateFormatStr;
|
}
|
|
public void setCodeDateFormatStr(String codeDateFormatStr) {
|
this.codeDateFormatStr = codeDateFormatStr;
|
}
|
|
@Override
|
public String toString() {
|
return "CodeSectionVO{" +
|
"id='" + id + '\'' +
|
", num='" + num + '\'' +
|
", name='" + name + '\'' +
|
", description='" + description + '\'' +
|
", secType='" + secType + '\'' +
|
", pkCodeRule='" + pkCodeRule + '\'' +
|
", codeSecLengthType='" + codeSecLengthType + '\'' +
|
", codeSecLength='" + codeSecLength + '\'' +
|
", codeDateFormatStr='" + codeDateFormatStr + '\'' +
|
'}';
|
}
|
}
|