xiaoyong931011
2021-03-15 39ae83445d16d37a3c02e0dfdeb1be15eac0e2c2
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.ShopSalesmanOrderItemDao;
import com.matrix.system.fenxiao.entity.ShopSalesmanOrderItem;
import org.springframework.stereotype.Service;
 
/**
 * @description 分销单明细
 * @author yourName
 * @date 2021-03-12 13:17
 */
@Service
public class ShopSalesmanOrderItemService  extends ServiceImpl<ShopSalesmanOrderItemDao, ShopSalesmanOrderItem>{
 
 
 
 
  
}