using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public class RequestUserToken
{
///
/// 设置类型1:安卓2:苹果
///
public int UserType
{
get; set;
}
///
/// 设备号
///
public string UserToken
{
get; set;
}
}
}