using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Domain.Values;
namespace WMS.Web.Domain.Entitys
{
///
/// wms出入库回退记录表
///
[Serializable]
[Table("t_wms_back_record")]
public class BackRecord
{
///
/// ID
///
public int Id { get; set; }
///
/// 类型:1为入库回退下架,2为出库回退上架
///
public BackRecordType Type { get; set; }
///
/// 操作人
///
public int CreatorId { get; set; }
///
/// 操作时间
///
public DateTime CreateTime { get; set; }
///
/// 明细
///
public List Details = new List();
///
/// 创建
///
///
public void Create(int creatorId)
{
this.CreatorId = creatorId;
this.CreateTime = DateTime.Now;
}
}
}