16 lines
275 B
Kotlin
16 lines
275 B
Kotlin
package com.arpa.hndahesudintocctmsdriver.event
|
|
|
|
/**
|
|
* @ClassName OrderStauEvent
|
|
* @Author john
|
|
* @Date 2024/3/5 15:51
|
|
* @Description statu: 1 刷新
|
|
*/
|
|
class OrderStauEvent constructor(statu: Int) {
|
|
|
|
var statu: Int = 0
|
|
|
|
init {
|
|
this.statu = statu
|
|
}
|
|
} |