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

27 lines
606 B

using FreeSql.DataAnnotations;
namespace Znyc.CloudCar.Model.Entities
{
/// <summary>
/// 商品库存
/// </summary>
[Table(Name = "rm_proudct_warehouse")]
public class ProudctWarehouseEntity : EntityBase
{
/// <summary>
/// 商品Id
/// </summary>
public long ProductId { get; set; }
/// <summary>
/// 当前商品数量
/// </summary>
public int CurrnetCnt { get; set; }
/// <summary>
/// 当前占用数据
/// </summary>
public int LockCnt { get; set; }
}
}