kongdeqiang
2023-07-10 aaabd0a9eb8f88705208fc9b0ff441dd0fd7ccbb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.boying.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.boying.entity.DongHuanZhuangTai;
import com.boying.mapper.DongHuanZhuangTaiMapper;
import com.boying.service.DongHuanZhuangTaiService;
import lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName DongHuanZhuangTaiServiceImpl.java
 * @Description TODO
 * @createTime 2023年06月19日 08:36:00
 */
@Service
@AllArgsConstructor
public class DongHuanZhuangTaiServiceImpl extends ServiceImpl<DongHuanZhuangTaiMapper, DongHuanZhuangTai> implements DongHuanZhuangTaiService {
}