riku
2020-08-21 0328eab9276e57487eb2cfff31a945a01dd8c73a
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()
    }
}