Helius
2021-04-12 b8d50f6ad9d1ab407e5b2a6867cf47bc4640a43c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.matrix.system.fenxiao.service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.matrix.system.fenxiao.dao.ShopSalemanSettlementDao;
import com.matrix.system.fenxiao.entity.ShopSalemanSettlement;
import org.springframework.stereotype.Service;
 
/**
 * @description 订单结算记录
 * @author jyy
 * @date 2021-03-10 15:22
 */
@Service
public class ShopSalemanSettlementService  extends ServiceImpl<ShopSalemanSettlementDao, ShopSalemanSettlement>{
 
 
 
 
  
}