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

ZsWebsiteMapper.java 355B

123456789101112131415
  1. package com.ruoyi.system.mapper;
  2. import com.ruoyi.system.domain.ZsWebsite;
  3. import com.ruoyi.system.domain.vo.ZsWebsiteVo;
  4. import com.ruoyi.common.core.mapper.BaseMapperPlus;
  5. /**
  6. * 站点信息Mapper接口
  7. *
  8. * @author 王强
  9. * @date 2025-04-30
  10. */
  11. public interface ZsWebsiteMapper extends BaseMapperPlus<ZsWebsiteMapper, ZsWebsite, ZsWebsiteVo> {
  12. }