using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 委外收货 /// [SugarTable("wms_outsource_h")] public partial class WmsOutsourceH : BaseEntity { public WmsOutsourceH() { id = SnowflakeIdHelper.NextId(); } /// /// 委外收货单号 /// public string bill_code { get; set; } /// /// 委外订单号 /// public string? outsource_order { get; set; } /// /// 联系人 /// public string? contact_person { get; set; } /// /// 电话 /// public string? tel { get; set; } /// /// 供应商ID /// public string? supplier_id { get; set; } /// /// 供应商编号 /// public string? supplier_code { get; set; } /// /// 供应商名称 /// public string? supplier_name { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 时间戳 /// public string? time_stamp { get; set; } /// /// 单据类型 /// public string? document_type { get; set; } /// /// 凭证日期 /// public string? certificate_date { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// erp_pk /// public string? erp_pk { get; set; } /// /// erp_bill_code /// public string? erp_bill_code { get; set; } /// /// 供货日期 /// public DateTime? ship_date { get; set; } /// /// 交易类型 /// public string? transaction_type { get; set; } /// /// erp到货单主表pk /// public string? erp_arriveorder_pk { get; set; } /// /// 制单方式(自制 同步) /// public string? make_method { get; set; } /// /// erp流水号 /// public string? service_num { get; set; } /// /// 到货类型编码 /// public string vtrantypecode { get; set; } }