XcrLegalRepresentativeService.java 437 B

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