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.
18 lines
336 B
Java
18 lines
336 B
Java
package com.engine.seclinktel.service;
|
|
|
|
import com.engine.seclinktel.entity.QuantitativeData;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
* @Author liang.cheng
|
|
* @Date 2025/6/19 11:12
|
|
* @Description: TODO
|
|
* @Version 1.0
|
|
*/
|
|
public interface PerformanceWorkflowService {
|
|
|
|
QuantitativeData buildDetailData(QuantitativeData quantitativeData);
|
|
}
|