|
|
|
@ -1,7 +1,10 @@ |
|
|
|
package com.jtem.modules.toolMan.entity; |
|
|
|
|
|
|
|
import com.jtem.common.utils.QueryPage; |
|
|
|
import org.apache.ibatis.type.Alias; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
@Alias("PartSubPropertiesValueData") |
|
|
|
public class PartSubPropertiesValueData extends QueryPage { |
|
|
|
private String partNo; |
|
|
|
private String site; |
|
|
|
@ -19,6 +22,7 @@ public class PartSubPropertiesValueData extends QueryPage { |
|
|
|
private String valueChooseFlag; |
|
|
|
// 工具名称 |
|
|
|
private String toolDescription; |
|
|
|
private List<PropertiesItemAvailableValueData> availableValueList; |
|
|
|
|
|
|
|
public String getToolDescription() { |
|
|
|
return toolDescription; |
|
|
|
@ -139,5 +143,13 @@ public class PartSubPropertiesValueData extends QueryPage { |
|
|
|
public void setValueChooseFlag(String valueChooseFlag) { |
|
|
|
this.valueChooseFlag = valueChooseFlag; |
|
|
|
} |
|
|
|
|
|
|
|
public List<PropertiesItemAvailableValueData> getAvailableValueList() { |
|
|
|
return availableValueList; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAvailableValueList(List<PropertiesItemAvailableValueData> availableValueList) { |
|
|
|
this.availableValueList = availableValueList; |
|
|
|
} |
|
|
|
} |
|
|
|
|