| 12345678910111213 |
- package com.zksy.data.service;
- import com.zksy.data.domain.po.XcrLegalRepresentative;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * @author 邵洋
- * @description 针对表【xcr_legal_representative(食品经营法定代表人信息)】的数据库操作Service
- * @createDate 2024-10-19 14:11:45
- */
- public interface XcrLegalRepresentativeService extends IService<XcrLegalRepresentative>,IBaseSaveDataInterface {
- }
|