You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
607 B
Java

package com.supervision.pdfqaserver.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.supervision.pdfqaserver.domain.Intention;
import com.supervision.pdfqaserver.service.IntentionService;
import com.supervision.pdfqaserver.mapper.IntentionMapper;
import org.springframework.stereotype.Service;
/**
* @author Administrator
* @description intentionService
* @createDate 2025-05-14 15:23:54
*/
@Service
public class IntentionServiceImpl extends ServiceImpl<IntentionMapper, Intention>
implements IntentionService{
}