重新生成Entity文件
This commit is contained in:
280
WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsOutstockD.cs
Normal file
280
WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsOutstockD.cs
Normal file
@@ -0,0 +1,280 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities
|
||||
{
|
||||
///<summary>
|
||||
///出库申请明细表
|
||||
///</summary>
|
||||
[SugarTable("wms_outstock_d")]
|
||||
public partial class WmsOutstockD
|
||||
{
|
||||
public WmsOutstockD(){
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// Desc:Id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey=true)]
|
||||
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
||||
|
||||
/// <summary>
|
||||
/// Desc:所属组织ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string org_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:出库单ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string bill_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:行号
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int bill_line {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:明细状态
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int line_status {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:库位ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string location_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:物品ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string material_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:物品代码
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string material_code {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:单位ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string unit_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:单位代码
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string unit_code {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:出库需求数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal pr_qty {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:实际出库数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal qty {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:要求出库日期(销售出库为交期)
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public DateTime delivery_date {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:发料仓库
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string warehouse_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:不含税单价
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? price {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:含税单价
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? tax_price {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:不含税金额
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? amount {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:含税金额
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? all_amount {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:来源单据ID
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? source_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:来源单单据类型
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? source_type {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:来源单据行号
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? source_line {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:来源单据明细ID
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? source_detail_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:生产工单号
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? mo_code {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:生产工单BOM明细Id
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? mo_bom_detail_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:生产工单行号
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? mo_line {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:打印数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal print_qty {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:扫描数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal scan_qty {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:备注
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? remark {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:扩展字段
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? extras {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:时间戳
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? time_stamp {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建用户
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string create_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建时间
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public DateTime create_time {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:修改用户
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? modify_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:修改时间
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public DateTime? modify_time {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:批次
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? code_batch {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具ID
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? carry_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具编号
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? carry_code {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user