OtcCodeInfo.java
606 Bytes
package com.cjs.site.model.entrust;
import com.cjs.site.model.BaseInfo;
/**
* 藏品基本信息
*
* @author tongyufu
*
*/
public class OtcCodeInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String otcCode;
private String otcName;
public String getOtcCode() {
return otcCode;
}
public void setOtcCode(String otcCode) {
this.otcCode = otcCode;
}
public String getOtcName() {
return otcName;
}
public void setOtcName(String otcName) {
this.otcName = otcName;
}
}