You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
230 B

package ;
/**
* @author 方初阳
* @version 1.0
* @created 23-10月-2025 19:43:46
*/
public interface ApprovalRule {
/**
*
* @param order
*/
public boolean validate(order:Order order);
}