package com.zt.life.modules.mainPart.basicInfo.dao; 
 | 
  
 | 
import com.zt.common.dao.BaseDao; 
 | 
import com.zt.life.modules.mainPart.basicInfo.model.TyProductModel; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
import java.util.List; 
 | 
import java.util.Map; 
 | 
  
 | 
  
 | 
/** 
 | 
 * product_model_common 
 | 
 * 
 | 
 * @author zt generator  
 | 
 * @since 1.0.0 2024-02-28 
 | 
 */ 
 | 
@Mapper 
 | 
public interface TyProductModelDao extends BaseDao<TyProductModel> { 
 | 
  
 | 
    List<TyProductModel> getList(Map<String, Object> params); 
 | 
  
 | 
    List<TyProductModel> getProductList(); 
 | 
  
 | 
    Integer getNo(Long pid,String nodeType); 
 | 
} 
 |