jinlin
2023-11-27 5d8c028ff37838e0628d5852e41b19efc80e4be1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 org.apache.ibatis.annotations.Mapper;
 
 
import java.util.List;
import java.util.Map;
 
 
/**
 * software_test_order
 *
 * @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<DictIstance> dictList(String dictType, String projectCode,String softIdentity);
}