liujie
2025-07-11 c3892d8e7378ea9441689ebe7009b3e02160b7a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.panzhihua.westcommittee.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.panzhihua.westcommittee.dao.WestPopUpMapper;
import com.panzhihua.westcommittee.model.entity.WestPopUp;
import com.panzhihua.westcommittee.service.WestPopUpService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 *  服务实现类
 * </p>
 *
 * @author administrator
 * @since 2025-07-09
 */
@Service
public class WestPopUpServiceImpl extends ServiceImpl<WestPopUpMapper, WestPopUp> implements WestPopUpService {
 
}