package com.doumee.dao.business.join; 
 | 
  
 | 
import com.baomidou.mybatisplus.core.mapper.BaseMapper; 
 | 
import com.doumee.dao.business.model.ApplyChagneDetail; 
 | 
import com.doumee.dao.business.model.ApplyDetail; 
 | 
import com.github.yulichang.base.mapper.MPJJoinMapper; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * @author 江蹄蹄 
 | 
 * @date 2024/01/16 10:03 
 | 
 */ 
 | 
public interface ApplyChagneDetailJoinMapper extends MPJJoinMapper<ApplyChagneDetail> { 
 | 
  
 | 
    void insertBatchSomeColumn(List<ApplyChagneDetail> addList); 
 | 
} 
 |