|
|
@ -8,12 +8,12 @@ import lombok.Data; |
|
|
|
@Schema(description = "溶液容器") |
|
|
|
@Data |
|
|
|
public class SolutionContainerState { |
|
|
|
@Schema(description = "容器数据id") |
|
|
|
private Long id; |
|
|
|
|
|
|
|
@Schema(description = "容器code") |
|
|
|
private ContainerCode containerCode; |
|
|
|
|
|
|
|
@Schema(description = "容器名称") |
|
|
|
private String containerName; |
|
|
|
|
|
|
|
@Schema(description = "容器类型 solution溶液容器 neutralization中和容器") |
|
|
|
private ContainerType type; |
|
|
|
|
|
|
@ -26,8 +26,7 @@ public class SolutionContainerState { |
|
|
|
@Schema(description = "是否完成预充,true为预充,false为排空") |
|
|
|
private boolean filledSolution = false; |
|
|
|
|
|
|
|
public SolutionContainerState(Long id, ContainerCode containerCode, ContainerType type) { |
|
|
|
this.id = id; |
|
|
|
public SolutionContainerState(ContainerCode containerCode, ContainerType type) { |
|
|
|
this.containerCode = containerCode; |
|
|
|
this.type = type; |
|
|
|
} |
|
|
|