jinlin
2024-02-23 1772fc5e211f9e9e0ab4cdc6c29b436aac178c2a
modules/mainPart/src/main/java/com/zt/life/modules/project/service/SoftwareTestOrderDeliverableService.java
@@ -6,7 +6,9 @@
import org.springframework.stereotype.Service;
import com.zt.common.db.query.QueryFilter;
import javax.annotation.Resource;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
@@ -32,8 +34,10 @@
     * 子表查询
     *
     */
    public List<SoftwareTestOrderDeliverable> childrenTables(Long orderId) {
        return baseDao.childrenTables(orderId);
    public List<SoftwareTestOrderDeliverable> getList(Long orderId) {
        Map<String, Object> params = new HashMap<>();
        params.put("orderId",orderId);
        return baseDao.getList(params);
    }
    /**