cuida
10 天以前 fd60f7ce6025c761e2836ffcbbb70894aee946fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.by4cloud.platformx.business.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.business.entity.Contract;
import com.by4cloud.platformx.business.mapper.ContractMapper;
import com.by4cloud.platformx.business.service.ContractService;
import org.springframework.stereotype.Service;
 
/**
 * @author cd
 * @description
 * @date 2026/4/29 14:07
 **/
@Service
public class ContractServiceImpl extends ServiceImpl<ContractMapper, Contract> implements ContractService {
 
}