using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.Domain
{
///
/// 进出存记录
///
[Comment("进出存记录")]
public class InvTransHist
{
///
/// 主键
///
[Comment("主键")]
[Key]
public int RecID { get; set; }
///
/// 域名
///
[Comment("域名")]
public string Domain { get; set; }
///
/// 租户ID
///
[Comment("租户ID")]
public long? tenant_id { get; set; }
///
/// 类型
///
[Comment("类型")]
public string TransType { get; set; }
///
/// 物料编号
///
[Comment("物料编号")]
public string ItemNum { get; set; }
///
/// 库存数量
///
[Comment("库存数量")]
public decimal? QtyChange { get; set; }
///
/// 是否有效:1-有效;0-无效
///
[Comment("是否有效")]
public bool IsActive { get; set; }
///
/// 创建时间
///
[Comment("创建时间")]
public DateTime? CreateTime { get; set; }
///
/// 创建人
///
[Comment("创建人")]
public string CreateUser { get; set; }
///
/// 创建时间
///
[Comment("修改时间")]
public DateTime? UpdateTime { get; set; }
///
/// 修改人
///
[Comment("修改人")]
public string UpdateUser { get; set; }
///
/// 库位
///
[Comment("库位")]
public string Loc { get; set; }
///
/// 批次
///
[Comment("批次")]
public string LotSerial { get; set; }
}
}