whycxzp
2023-08-07 976f9bc9859dd93718dc8b51e8fc4387c354ec0c
1
2
3
4
5
6
7
8
9
10
package com.whyc.mapper;
 
import com.whyc.pojo.BattDischargePlanLog;
 
import java.util.List;
 
public interface BattDischargePlanLogMapper extends CustomMapper<BattDischargePlanLog> {
    List<BattDischargePlanLog> getList(int planId);
 
}