kongdeqiang
2023-01-17 fb1a96ec056ee660ff3c264cdd64cdb8ac5d7540
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.boying.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.boying.entity.StreetReRoad;
import com.boying.entity.UpdateApp;
import com.boying.mapper.StreetReRoadMapper;
import com.boying.mapper.UpdateAppMapper;
import com.boying.service.StreetReRoadService;
import com.boying.service.UpdateAppService;
import org.springframework.stereotype.Service;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName UpdateAppServiceImpl.java
 * @Description TODO
 * @createTime 2022年11月21日 08:57:00
 */
@Service
public class UpdateAppServiceImpl extends ServiceImpl<UpdateAppMapper, UpdateApp> implements UpdateAppService {
}