餐盘柜接口改造

This commit is contained in:
2025-12-26 14:05:41 +08:00
parent 5e4dc4baa4
commit 7a6c4012d1
28 changed files with 859 additions and 507 deletions
@@ -12,28 +12,24 @@ import kotlinx.parcelize.Parcelize
@Parcelize
data class BindParam(
/**
* app版本号
* 设备Id
*/
var appVersion: String = "",
val equipmentId: Int? = null,
/**
* 设备ID
* 设备编号
*/
@SerializedName("equipmentCode")
var equipmentCode: String = "",
/**
*设备盒子编号
*/
@SerializedName("equipmentBoxCode")
val equipmentBoxCode: String? = null,
/**
*
* 会员Id
*/
@SerializedName("memberId")
val memberId: Int? = null,
/**
*餐盘编号
*/
@SerializedName("plateNumber")
val plateNumber: String? = null
) : Parcelable
@@ -11,27 +11,19 @@ import kotlinx.parcelize.Parcelize
@Parcelize
data class LoginParam(
/**
* app版本号
* 设备Id
*/
var appVersion: String = "",
/**
* 设备ID
*/
@SerializedName("equipmentCode")
var equipmentCode: String = "",
val equipmentId: Int? = null,
/**
* 会员信息
*/
@SerializedName("memberId")
val memberId: Int? = null,
/**
* 密码
*/
@SerializedName("password")
val password: String? = null,
/**
* 手机号
*/
@SerializedName("phone")
val phone: String? = null
) : Parcelable