fix:格式化

This commit is contained in:
nieziyan 2024-08-19 14:51:37 +08:00
parent 0718701788
commit af71f40b1c

View File

@ -1,6 +1,7 @@
package org.jeecg.modules.entity.vo;
import lombok.Data;
import org.jeecg.common.util.NumUtil;
import java.io.Serializable;
@ -17,4 +18,7 @@ public class TableWidget implements Serializable {
private String fwhmKeV;
public void setChannel(Double channel) {
this.channel = NumUtil.fixedMax(6, channel);
}
}