Commit 351890d4 authored by 王雷's avatar 王雷

merge

parents 24e25556 937eed09
...@@ -22,7 +22,7 @@ android { ...@@ -22,7 +22,7 @@ android {
} }
group 'com.qmai.android.sdk' group 'com.qmai.android.sdk'
version '2.1.3-SNAPSHOT' version '2.1.5-SNAPSHOT'
gradlePublish { gradlePublish {
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
For example: For example:
<version value="1" /> <version value="1" />
--> -->
<version value="2" /> <version value="3" />
<!-- <!--
Define your models in the list with mapping tag, LitePal will Define your models in the list with mapping tag, LitePal will
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
<list> <list>
<mapping class="com.zhimai.websocket.bean.MessageSqlBean" /> <mapping class="com.zhimai.websocket.bean.MessageSqlBean" />
<mapping class="com.zhimai.websocket.bean.SocketOrderInfoBean"/> <mapping class="com.zhimai.websocket.bean.SocketOrderInfoBean"/>
<mapping class="com.zhimai.websocket.bean.SocketCheckMessage"/>
</list> </list>
<!-- <!--
......
package com.zhimai.websocket.bean
import org.litepal.crud.LitePalSupport
/**
* @author: 高英祥
* @github:
* @time: 2021/9/13 15:02
* @desc:
* @doc:
*/
class SocketCheckMessage : LitePalSupport() {
//消息唯一id
var messageId:String? = null
//订单号
var orderNo:String? = null
//设备id
var deviceId:String? = null
//设备的tag
var tag:String? = null
//门店id
var mutableId:String? = null
//门店名称
var mutableName:String? = null
//店铺名称:
var shopName:String? = null
//店铺id
var shopId:String? = null
//当前版本
var version:String? = null
//订单类容
var orderDetails:String? = null
//订单时间
var orderInTime:String? = null
//打印机状态
var printerState:String? = null
//是否打印
var isPrint:String? = null
//是否播报
var isPlay:String? = null
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment