ludc
2023-10-19 9cf4f187ef0ff526e0f2f84be7e06bf05fd33ab3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.vci.ubcs.code.applyjtcodeservice.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.vci.ubcs.code.applyjtcodeservice.mapper.DockingPreApplyFormMapper;
import com.vci.ubcs.code.applyjtcodeservice.entity.DockingPreApplyForm;
import com.vci.ubcs.code.applyjtcodeservice.service.IDockingPreApplyFormService;
import org.springframework.stereotype.Service;
 
/***
 *集团属性映射服务
 * @author xiejun
 * @date 2023-05-22
 */
@Service
public class DockingPreApplyFormServiceImpl extends ServiceImpl<DockingPreApplyFormMapper, DockingPreApplyForm> implements IDockingPreApplyFormService {
}