property_service.dart 163 B

1234567891011
  1. /*
  2. * Property 组件对应的路由抽象接口
  3. */
  4. abstract class PropertyService {
  5. void startPropertyPage();
  6. void startPropertyNewsDetailPage(int id);
  7. }