| | |
| | | import com.zt.life.modules.project.model.SoftwareTestOrderMeasured; |
| | | 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; |
| | | |
| | | |
| | | /** |
| | | * software_test_order_measured |
| | | * |
| | | * @author zt generator |
| | | * @since 1.0.0 2023-11-08 |
| | | * @since 1.0.0 2023-11-09 |
| | | */ |
| | | @Service |
| | | public class SoftwareTestOrderMeasuredService extends BaseService<SoftwareTestOrderMeasuredDao, SoftwareTestOrderMeasured> { |
| | |
| | | } |
| | | |
| | | /** |
| | | * 子表查询 |
| | | * |
| | | */ |
| | | public List<SoftwareTestOrderMeasured> getList(Long orderId) { |
| | | Map<String, Object> params = new HashMap<>(); |
| | | params.put("orderId",orderId); |
| | | return baseDao.getList(params); |
| | | } |
| | | |
| | | /** |
| | | * 删除 |
| | | * |
| | | * @param ids |