| | |
| | | package com.zt.life.modules.project.dao; |
| | | |
| | | import com.zt.common.dao.BaseDao; |
| | | import com.zt.core.sys.dto.DictIstance; |
| | | import com.zt.life.modules.project.model.SoftwareTestOrder; |
| | | import com.zt.life.modules.project.model.SoftwareTestOrderDeliverable; |
| | | import com.zt.life.modules.project.model.SoftwareTestOrderMeasured; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | |
| | |
| | | /** |
| | | * software_test_order |
| | | * |
| | | * @author zt generator |
| | | * @author zt generator |
| | | * @since 1.0.0 2023-11-08 |
| | | */ |
| | | @Mapper |
| | | public interface SoftwareTestOrderDao extends BaseDao<SoftwareTestOrder> { |
| | | |
| | | List<SoftwareTestOrder> getList(Map<String, Object> params); |
| | | List<SoftwareTestOrderDeliverable> getdeliverableDictList(); |
| | | List<SoftwareTestOrderMeasured> getMeasuredDictList(); |
| | | |
| | | List<DictIstance> dictList(String dictType, String projectCode); |
| | | } |