zhaowenxuan
2025-03-31 1ef5f262ec24d1a38a192903a4c0b707fb7f96e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ltkj.hosp.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.mapper.AwsMapper;
import com.ltkj.hosp.service.AwsService;
import com.ltkj.hosp.sqlDomain.Aws;
import org.springframework.stereotype.Service;
 
/**
 * ClassName: AwsServiceImpl <br/>
 * Description: <br/>
 * date: 2025/2/5 17:56<br/>
 *
 * @author zjh<br />
 */
@Service
public class AwsServiceImpl extends ServiceImpl<AwsMapper, Aws> implements  AwsService {
}