#
vincentlu
3 天以前 c6d75c0d50859fbc68eaea05d49d8e4738ad525d
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.acs.manager.manager.service.impl;
 
import com.zy.acs.manager.manager.mapper.GuaranteeMapper;
import com.zy.acs.manager.manager.entity.Guarantee;
import com.zy.acs.manager.manager.service.GuaranteeService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("guaranteeService")
public class GuaranteeServiceImpl extends ServiceImpl<GuaranteeMapper, Guarantee> implements GuaranteeService {
 
}