| | |
| | | package com.zt.life.modules.project.dao; |
| | | |
| | | import com.zt.common.dao.BaseDao; |
| | | import com.zt.life.modules.project.model.DictList; |
| | | import com.zt.core.sys.dto.DictIstance; |
| | | import com.zt.life.modules.project.model.SoftwareTestOrder; |
| | | import com.zt.life.modules.project.model.SoftwareTestOrderDeliverable; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | |
| | |
| | | public interface SoftwareTestOrderDao extends BaseDao<SoftwareTestOrder> { |
| | | |
| | | List<SoftwareTestOrder> getList(Map<String, Object> params); |
| | | List<DictList> dictList(String dictType); |
| | | List<DictIstance> dictList(String dictType, String projectCode,String softIdentity); |
| | | } |