67 lines
2.0 KiB
C#
67 lines
2.0 KiB
C#
using SqlSugar;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 手动添加的记录
|
|
/// </summary>
|
|
public class YB_ResultAdd
|
|
{
|
|
/// <summary>
|
|
/// 手动添加的记录
|
|
/// </summary>
|
|
public YB_ResultAdd()
|
|
{
|
|
}
|
|
|
|
private System.Int32 _Id;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public System.Int32 Id { get { return this._Id; } set { this._Id = value; } }
|
|
|
|
private System.Int32 _ResultId;
|
|
/// <summary>
|
|
/// 关联的记录ID
|
|
/// </summary>
|
|
public System.Int32 ResultId { get { return this._ResultId; } set { this._ResultId = value; } }
|
|
|
|
private System.Decimal _Height;
|
|
/// <summary>
|
|
/// 身高值,CM
|
|
/// </summary>
|
|
public System.Decimal Height { get { return this._Height; } set { this._Height = value; } }
|
|
|
|
private System.Decimal _Weight;
|
|
/// <summary>
|
|
/// 体重值,KG
|
|
/// </summary>
|
|
public System.Decimal Weight { get { return this._Weight; } set { this._Weight = value; } }
|
|
|
|
private System.Int32 _UserId;
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public System.Int32 UserId { get { return this._UserId; } set { this._UserId = value; } }
|
|
|
|
private System.Int32 _FamilyId;
|
|
/// <summary>
|
|
/// 家庭成员ID
|
|
/// </summary>
|
|
public System.Int32 FamilyId { get { return this._FamilyId; } set { this._FamilyId = value; } }
|
|
|
|
private System.DateTime _ResultTime;
|
|
/// <summary>
|
|
/// 测量时间
|
|
/// </summary>
|
|
public System.DateTime ResultTime { get { return this._ResultTime; } set { this._ResultTime = value; } }
|
|
|
|
private System.DateTime _CreateTime;
|
|
/// <summary>
|
|
/// 添加时间
|
|
/// </summary>
|
|
public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } }
|
|
}
|
|
}
|