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.

31 lines
754 B
C#

using LinqToDB.Mapping;
namespace TradeUsedSale.Repositories.Models
{
public class CK_StorePostion
{
[PrimaryKey, Identity]
public int PostionId { get; set; }
public int? StoreId { get; set; }
/// <summary>
/// 库位编号
/// </summary>
public string PostionCode { get; set; }
/// <summary>
/// 库位描述
/// </summary>
public string PostionDesc { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
public int? IsLS { get; set; }
public int? SortNo { get; set; }
public string PostionBox { get; set; }
public int? CompanyId { get; set; }
}
}