riku
2020-10-10 32e17591ca41ba7b79514f0cb2e2ef6eb3e5a384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package cn.flightfeather.thirdapp.business.widgettype1
 
import cn.flightfeather.thirdapp.BaseFragment
import cn.flightfeather.thirdapp.R
 
/**
 * @author riku
 *  2019.3.29
 */
class Inspection2Fragment : BaseFragment() {
 
    override fun getLayoutId(): Int = R.layout.fragment_inspection2
 
    override fun initView() {
 
    }
 
    override fun initData() {
 
    }
 
    companion object {
        @JvmStatic
        fun newInstance() = Inspection2Fragment()
    }
}