|
|
@@ -0,0 +1,18 @@
|
|
|
+package com.tongyu.luck.happywork.ui.activity.cclient.clock;
|
|
|
+
|
|
|
+import com.tongyu.luck.happywork.R;
|
|
|
+import com.tongyu.luck.happywork.ui.base.BaseActivity;
|
|
|
+import com.tongyu.luck.happywork.ui.mvp.cclient.contacts.ClockInResultContacts;
|
|
|
+import com.tongyu.luck.happywork.ui.mvp.cclient.presenter.ClockInResultPresenter;
|
|
|
+
|
|
|
+public class ClockInResultActivity extends BaseActivity<ClockInResultPresenter> implements ClockInResultContacts.IClockInResultView {
|
|
|
+ @Override
|
|
|
+ public int getLayoutId() {
|
|
|
+ return R.layout.activity_clock_in_result;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ClockInResultPresenter bindPresenter() {
|
|
|
+ return new ClockInResultPresenter(this);
|
|
|
+ }
|
|
|
+}
|