You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
426 B
Java
10 lines
426 B
Java
package com.sztzjy.linkCommerce.service;
|
|
|
|
import com.sztzjy.linkCommerce.config.security.JwtUser;
|
|
import com.sztzjy.linkCommerce.entity.dto.HardwareCostStepThreeValidationRequest;
|
|
import com.sztzjy.linkCommerce.entity.dto.HardwareCostStepThreeValidationResult;
|
|
|
|
public interface HardwareCostStepThreeService {
|
|
HardwareCostStepThreeValidationResult validate(HardwareCostStepThreeValidationRequest request, JwtUser user);
|
|
}
|