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()
|
}
|
}
|