fix:修改updateROI接口参数

This commit is contained in:
xiaoguangbin 2024-07-23 08:45:32 +08:00
parent 0af17e0601
commit 1e830b0392

View File

@ -0,0 +1,12 @@
package org.jeecg.modules.entity.vo;
import lombok.Data;
import java.io.Serializable;
@Data
public class ROIParam implements Serializable {
private Integer startChannel;
private Integer endChannel;
private Integer roiNum;
}