xuhy
2025-04-09 c959d9e2948e50c7d4e5b1b7e2e1db7d756d2652
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.model.TBillDetail;
 
import javax.validation.constraints.NotEmpty;
import java.util.List;
 
/**
 * <p>
 * 账单水电费子表 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2025-02-10
 */
public interface TBillDetailService extends IService<TBillDetail> {
 
    List<TBillDetail> getByBillId(@NotEmpty String billId);
 
 
}