Commit dcd1ae42 by zhangxingmin

push

parent 1054309f
......@@ -31,7 +31,6 @@ public class ProductCommonUtils {
/**
* 检查年限区间是否重叠
* 根据需求:1-3和3-5算重叠,1-3和4-7不算重叠
* @param start1
* @param end1
* @param start2
......@@ -40,7 +39,6 @@ public class ProductCommonUtils {
*/
public static boolean isYearRangeOverlap(int start1, int end1, int start2, int end2) {
// 两个区间重叠的条件:区间1的结束年份 >= 区间2的开始年份
// 例如:1-3和3-5重叠(3>=3),1-3和4-7不重叠(3<4)
return Math.max(start1, start2) <= Math.min(end1, end2);
}
......
......@@ -87,4 +87,9 @@ public class ApiExpectedCommissionRatioBatchSaveDto {
*/
@NotNull(message = "状态不能为空")
private Integer status;
/**
* 通用备注
*/
private String remark;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment