WcBlackoutPlanServiceImpl.java 533 B

1234567891011121314151617181920
  1. package com.bizmatics.service.impl;
  2. import com.bizmatics.model.WcBlackoutPlan;
  3. import com.bizmatics.persistence.mapper.WcBlackoutPlanMapper;
  4. import com.bizmatics.service.WcBlackoutPlanService;
  5. import com.bizmatics.common.mvc.base.AbstractCrudService;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * <p>
  9. * 服务实现类
  10. * </p>
  11. *
  12. * @author ya
  13. * @since 2021-07-07
  14. */
  15. @Service
  16. public class WcBlackoutPlanServiceImpl extends AbstractCrudService<WcBlackoutPlanMapper, WcBlackoutPlan> implements WcBlackoutPlanService {
  17. }