area_business_work_rate.h 830 B

123456789101112131415161718192021222324
  1. #ifndef AREA_BUSINESS_WORK_RATE
  2. #define AREA_BUSINESS_WORK_RATE
  3. #include<area_business.h>
  4. /**
  5. * @brief 工时利用率
  6. */
  7. class area_business_work_rate:public area_business
  8. {
  9. public:
  10. int area_business_type()
  11. {
  12. return 12;
  13. }
  14. void on_load_his(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
  15. void on_enter(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
  16. void on_hover(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
  17. void on_leave(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
  18. };
  19. #endif // AREA_BUSINESS_WORK_RATE