GLDriver/app/src/main/java/com/dahe/gldriver/event/GoWaybillEvent.kt

16 lines
259 B
Kotlin

package com.dahe.gldriver.event
/**
* @ClassName OrderStauEvent
* @Author john
* @Date 2024/3/5 15:51
* @Description statu: 1 刷新
*/
class GoWaybillEvent constructor(statu: Int) {
var statu: Int = 0
init {
this.statu = statu
}
}