You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3 KiB
C#

9 months ago
using Newtonsoft.Json;
using NPoco;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
[TableName("pos_store_handover_detail_part")]
[PrimaryKey(new string[] { "id" }, AutoIncrement = false)]
public class HandOverDetailPart : BaseEntity
{
public HandOverDetailPart()
{
}
/// <summary>
/// 租户编码
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
[Column("tenantId")]
public string TenantId { get; set; }// 租户ID
[JsonProperty(PropertyName = "specName")]
[Column("specName")]
public string SpecName { get; set; }// 规格名称
[JsonProperty(PropertyName = "preCount")]
[Column("preCount")]
public decimal PreCount { get; set; }// 初始数量
[JsonProperty(PropertyName = "count")]
[Column("count")]
public decimal Count;// 系统数量
[JsonProperty(PropertyName = "handsCount")]
[Column("handsCount")]
public decimal HandsCount;// 手工数量
[JsonProperty(PropertyName = "difCount")]
[Column("difCount")]
public decimal DifCount;// 差异数量
}
}