using Admin.NET.Core;
|
|
/*
|
* @author : 您的名字
|
* @date : 2024/7/25下午4:57:55
|
* @desc : 库存快照表
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 库存快照表
|
/// </summary>
|
[SugarTable("wms_stock_snapshot", "库存快照表")]
|
public class WmsStockSnapshot : EntityBase
|
{
|
|
|
/// <summary>
|
/// 快照号
|
/// </summary>
|
[SugarColumn(ColumnName = "SnapshotNo", ColumnDescription = "快照号", Length = 50)]
|
|
public string? SnapshotNo { get; set; }
|
|
/// <summary>
|
/// 快照日期
|
/// </summary>
|
[SugarColumn(ColumnName = "SnapshotDate", ColumnDescription = "快照日期", Length = 50)]
|
|
public string? SnapshotDate { get; set; }
|
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(ColumnName = "Remark", ColumnDescription = "备注", Length = 50)]
|
|
public string? Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
}
|