33 lines
720 B
C#
33 lines
720 B
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.BasicData.Entities;
|
|
|
|
/// <summary>
|
|
/// 物料入场规格
|
|
/// </summary>
|
|
[SugarTable("bas_material_into_factory_specifications")]
|
|
public partial class BasMaterialIntoFactorySpecifications : BaseEntity<string>
|
|
{
|
|
public BasMaterialIntoFactorySpecifications()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 物料id
|
|
/// </summary>
|
|
public string material_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 单位id
|
|
/// </summary>
|
|
public string unit_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public decimal num { get; set; }
|
|
|
|
}
|