using SqlSugar;
namespace YBDevice.Entity
{
///
/// 测量记录
///
public class YB_Result
{
///
/// 测量记录
///
public YB_Result()
{
}
///
///
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public System.Int32 Id { get; set; }
///
/// 体重,单位kg
///
public System.Decimal Weight { get; set; }
///
/// 身高,单位厘米
///
public System.Decimal Height { get; set; }
///
/// 阻抗,单位欧姆
///
public System.Decimal Imp { get; set; }
///
/// 类型,1-单阻抗,2-八电极
///
public System.Int32 Type { get; set; }
///
/// 认领状态,0-未认领,1-已认领,-1-未知状态
///
public System.Int32 TaskStatus { get; set; }
///
/// 认领时间
///
public System.DateTime? TakeTime { get; set; }
///
/// 粉丝ID,主要为了微信扫码使用
///
public System.String FansId { get; set; }
///
/// 公众号appid
///
public System.String PublicId { get; set; }
///
/// 订单ID
///
public System.Guid OrderId { get; set; }
///
/// 商户ID
///
public System.Int32 BusinessId { get; set; }
///
/// 记录唯一码,扫码的时候只能用一次
///
public System.String VrCode { get; set; }
///
/// 设备ID
///
public System.Int32 EquId { get; set; }
///
/// 机器码
///
public System.String Ecode { get; set; }
///
/// 家庭成员ID,为0则为自己
///
public System.Int32 FamilyId { get; set; }
///
/// 所属用户ID
///
public System.Int32 UserId { get; set; }
///
/// 测量时间
///
public System.DateTime Createtime { get; set; }
}
}