xyc
2024-10-15 af5762fdb87b6adfe07fbdb491cd684931afc652
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.zt.life.modules.mainPart.basicInfo.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.life.modules.mainPart.basicInfo.model.ParamData;
import org.apache.ibatis.annotations.Mapper;
 
 
import java.util.List;
import java.util.Map;
 
 
/**
 * param_data
 *
 * @author zt generator 
 * @since 1.0.0 2024-03-04
 */
@Mapper
public interface ParamDataDao extends BaseDao<ParamData> {
 
    List<ParamData> getList(Map<String, Object> params);
    ParamData getParamData(Long productId);
 
    List<ParamData> getByShipId(Long shipId);
    List<ParamData> getDeviceParams(Long shipId);
 
    void deleteByShipId(Long shipId);
}