| | |
| | | // @JsonIgnore |
| | | private Integer lastFrames; |
| | | |
| | | private Integer save_interval; |
| | | private Double save_interval; |
| | | |
| | | private Integer save_start; |
| | | |
| | |
| | | public ResultVo() { |
| | | this.save_variables = new ArrayList<>(Arrays.asList("depth", "xmomentum", "ymomentum")); |
| | | this.save_start = 0; |
| | | this.save_filter = 0.005D; |
| | | this.save_filter = 0.015D; |
| | | } |
| | | |
| | | public ResultVo(String saveName, int frames, int saveInterval, |
| | | public ResultVo(String saveName, int frames, double saveInterval, |
| | | String saveMode, String startTime) { |
| | | this(); |
| | | |
| | |
| | | this.lastFrames = lastFrames; |
| | | } |
| | | |
| | | public Integer getSave_interval() { |
| | | public Double getSave_interval() { |
| | | return save_interval; |
| | | } |
| | | |
| | | public void setSave_interval(Integer save_interval) { |
| | | public void setSave_interval(Double save_interval) { |
| | | this.save_interval = save_interval; |
| | | } |
| | | |