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.

92 lines
2.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using AUCMA.STORE.Entity.Enums;
using SqlSugar;
namespace AUCMA.STORE.Entity.DAO
{
/// <summary>
/// 物料信息
///</summary>
[SugarTable("BASE_MATERIAL_INFO")]
public class BaseMaterialInfo
{
public BaseMaterialInfo()
{
}
public BaseMaterialInfo(string objid, string materialCode)
{
this.objid = objid;
this.materialCode = materialCode;
}
/// <summary>
/// 主键
///</summary>
[SugarColumn(ColumnName="OBJID" ,IsPrimaryKey = true )]
public string objid { get; set; }
/// <summary>
/// 物料编码
///</summary>
[SugarColumn(ColumnName="MATERIAL_CODE" )]
public string materialCode { get; set; }
/// <summary>
/// 物料名称
///</summary>
[SugarColumn(ColumnName="MATERIAL_NAME" )]
public string materialName { get; set; }
/// <summary>
/// 物料类别
///</summary>
[SugarColumn(ColumnName="MATERIAL_TYPE" )]
public string materialType { get; set; }
/// <summary>
/// 物料尺寸
///</summary>
[SugarColumn(ColumnName="MATERIAL_SIZE" )]
public decimal? materialSize { get; set; }
/// <summary>
/// 物料高度
///</summary>
[SugarColumn(ColumnName="MATERIAL_HEIGHT" )]
public decimal? materialHeigh { get; set; }
/// <summary>
/// 物料重量
///</summary>
[SugarColumn(ColumnName="MATERIAL_WEIGHT" )]
public decimal? materialWeight { get; set; }
/// <summary>
/// 备注
///</summary>
[SugarColumn(ColumnName="REMARK" )]
public string remark { get; set; }
/// <summary>
/// 删除标志
///</summary>
[SugarColumn(ColumnName="DELETE_FLAG" )]
public DeleteFlag deleteFlag { get; set; }
/// <summary>
/// 记录时间
///</summary>
[SugarColumn(ColumnName="RECORD_TIME" )]
public DateTime? recordTime { get; set; }
/// <summary>
/// 手动出库使用
/// </summary>
public LocationArea locationArea { get; set; }
}
}