1234567891011121314151617181920 |
- package com.bizmatics.service.impl;
- import com.bizmatics.model.WcBlackoutPlan;
- import com.bizmatics.persistence.mapper.WcBlackoutPlanMapper;
- import com.bizmatics.service.WcBlackoutPlanService;
- import com.bizmatics.common.mvc.base.AbstractCrudService;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author ya
- * @since 2021-07-07
- */
- @Service
- public class WcBlackoutPlanServiceImpl extends AbstractCrudService<WcBlackoutPlanMapper, WcBlackoutPlan> implements WcBlackoutPlanService {
- }
|