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.
65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SqlSugar;
|
|
|
|
namespace Sln.Wcs.Model.Domain
|
|
{
|
|
/// <summary>
|
|
/// 出入库记录实体类
|
|
/// </summary>
|
|
[SugarTable("base_inoutrecord")]
|
|
public class BaseInoutRecord
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出入库标志位 1-入库 2-出库
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "inout_flag", ColumnDescription = "出入库标志位")]
|
|
public int InoutFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "material_type", ColumnDescription = "物料类型")]
|
|
public string MaterialType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "material_code", ColumnDescription = "物料编号")]
|
|
public string MaterialCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "warehouse_id", ColumnDescription = "仓库编号")]
|
|
public string WarehouseId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出入库人员
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createuser", ColumnDescription = "出入库人员")]
|
|
public string Createuser { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "create_time", ColumnDescription = "创建时间")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "update_time", ColumnDescription = "更新时间")]
|
|
public DateTime UpdateTime { get; set; }
|
|
}
|
|
}
|