shiyunteng
19 小时以前 fca21683e1b5b906d2514082ddfbae8eb820c9ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.business.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.business.entity.ContractTemplate;
import com.by4cloud.platformx.business.mapper.ContractTemplateMapper;
import com.by4cloud.platformx.business.service.ContractTemplateService;
import org.springframework.stereotype.Service;
/**
 * 合同模版
 *
 * @author syt
 * @date 2026-05-15 14:13:59
 */
@Service
public class ContractTemplateServiceImpl extends ServiceImpl<ContractTemplateMapper, ContractTemplate> implements ContractTemplateService {
}