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.ShopSalesmanApplyDao;
| import com.matrix.system.fenxiao.entity.ShopSalesmanApply;
| import org.springframework.stereotype.Service;
|
| /**
| * @description 推广员申请记录
| * @author jyy
| * @date 2021-03-10 15:22
| */
| @Service
| public class ShopSalesmanApplyService extends ServiceImpl<ShopSalesmanApplyDao, ShopSalesmanApply>{
|
|
|
|
|
| }
|
|