|
@@ -169,6 +169,18 @@ public class CuttingTool extends Entity<Long> {
|
|
|
@TableField(exist = false)
|
|
|
private String deviceName;
|
|
|
|
|
|
+ @ApiModelProperty(value = "刀具寿命")
|
|
|
+ @TableField(value = "tool_life_span")
|
|
|
+ private String toolLifeSpan;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "刀具额定次数")
|
|
|
+ @TableField(value = "tool_rated_usage_count")
|
|
|
+ private String toolRatedUsageCount;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "刀具已使用次数")
|
|
|
+ @TableField(value = "tool_used_count")
|
|
|
+ private String toolUsedCount;
|
|
|
+
|
|
|
@Builder
|
|
|
public CuttingTool(Long id, Long createUser, LocalDateTime createTime, Long updateUser, LocalDateTime updateTime,Long deviceId, int cutterNo,
|
|
|
String cuttingToolName, RemoteData<String, String> cuttingToolType, String specifications, String status, String cuttingToolPicture,String cuttingToolInstallPicture) {
|