1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
| package com.by4cloud.platformx.business.invoice.mapper;
|
| import com.by4cloud.platformx.business.entity.invoice.InvoiceResult;
| import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper;
|
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 开具发票返回值
| *
| * @author kdq
| * @date 2024-11-05 18:44:09
| */
| @Mapper
| public interface FpInvoiceResultMapper extends PlatformxBaseMapper<InvoiceResult> {
|
| }
|
|