李白
2026-06-05 d1f4be00fc8ab2faf990aa0446156b305fc25586
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.business.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.business.entity.BillingItem;
import com.by4cloud.platformx.business.mapper.BillingItemMapper;
import com.by4cloud.platformx.business.service.BillingItemService;
import org.springframework.stereotype.Service;
/**
 * 开票产品信息
 *
 * @author wjli
 * @date 2026-06-04 16:29:33
 */
@Service
public class BillingItemServiceImpl extends ServiceImpl<BillingItemMapper, BillingItem> implements BillingItemService {
}