ARentalContentServiceImpl.java 609 B

12345678910111213141516171819202122
  1. package com.zksy.property.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.zksy.property.domain.ARentalContent;
  4. import com.zksy.property.service.ARentalContentService;
  5. import com.zksy.property.mapper.ARentalContentMapper;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * @author Administrator
  9. * @description 针对表【a_rental_content】的数据库操作Service实现
  10. * @createDate 2025-07-09 17:09:24
  11. */
  12. @Service
  13. public class ARentalContentServiceImpl extends ServiceImpl<ARentalContentMapper, ARentalContent>
  14. implements ARentalContentService{
  15. }