You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.connor.cust.classification ;
/**
* @copyRight 浙江康勒科技有限公司
* @author 作者 E-mail:hub@connor.net.cn
* @date 创建时间: 2017-7-3 下午11:47:03
* @version v1.0
* @parameter
* @since
* @return
*/
public class ClassProperty {
private int propertyID ;
private String value ;
public ClassProperty ( ) {
}
public ClassProperty ( int propertyID , String value ) {
this . propertyID = propertyID ;
this . value = value ;
}
public int getPropertyID ( ) {
return propertyID ;
}
public void setPropertyID ( int propertyID ) {
this . propertyID = propertyID ;
}
public String getValue ( ) {
return value ;
}
public void setValue ( String value ) {
this . value = value ;
}
}