| package com.zy.asrs.mapper; | 
|   | 
| import com.baomidou.mybatisplus.mapper.BaseMapper; | 
| import com.zy.asrs.entity.WrkMast; | 
| import com.zy.asrs.entity.WrkMastSta; | 
| import org.apache.ibatis.annotations.Mapper; | 
| import org.springframework.stereotype.Repository; | 
|   | 
| import java.util.List; | 
|   | 
| @Mapper | 
| @Repository | 
| public interface WrkMastStaMapper extends BaseMapper<WrkMastSta> { | 
|     Integer wrkCount1(); | 
|     Integer wrkCount2(); | 
|     List<WrkMastSta> selectToBeHistoryData(); | 
|   | 
| } |