using SqlSugar; namespace YBDevice.Entity { /// /// 测量记录扩展表 /// public class YB_ResultExt { /// /// 测量记录扩展表 /// public YB_ResultExt() { } /// /// 测量记录ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public System.Int32 Id { get; set; } /// /// 称重记录ID /// public System.Int32 ResultId { get; set; } /// /// 体重,单位为KG /// public System.Decimal Weight { get; set; } /// /// 身高,厘米 /// public System.Decimal Height { get; set; } /// /// 类型,1-单阻抗,2-八电极 /// public System.Int32 Type { get; set; } /// /// 阻抗值 /// public System.Decimal Imp { get; set; } /// /// 设备ID /// public System.Int32 EquId { get; set; } /// /// 设备机器码 /// public System.String Ecode { get; set; } /// /// 设备序列号 /// public System.String FacEcode { get; set; } /// /// 来源,1-蓝牙传输,2-手动记录,3-扫码记录 /// public System.Int32 SourceType { get; set; } /// /// 使用的订单ID /// public System.Guid OrderId { get; set; } /// /// 所属的公众号/小程序 /// public System.String PublicId { get; set; } /// /// 扫码时使用的用户唯一标识 /// public System.String FansId { get; set; } /// /// 用户ID /// public System.Int32 UserId { get; set; } /// /// 客户ID /// public System.Int32 BusinessId { get; set; } /// /// 创建时间 /// public System.DateTime CreateTime { get; set; } } }