ContractInfoServiceImpl.java 436 Bytes
package vion.service.impl;

import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import vion.mapper.ContractInfoMapper;
import vion.model.ContractInfo;
import vion.service.IContractInfoService;
/**
 * @author HlQ
 * @date 2023/11/29
 */
@Service
public class ContractInfoServiceImpl extends ServiceImpl<ContractInfoMapper, ContractInfo> implements IContractInfoService {

}