using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 采购退货 /// [SugarTable("wms_purchase_return_h")] public partial class WmsPurchaseReturnH : BaseEntity { public WmsPurchaseReturnH() { id = SnowflakeIdHelper.NextId(); } /// /// 采购退货单号 /// public string? bill_code { get; set; } /// /// 联系人 /// public string? contact_person { get; set; } /// /// 电话 /// public string? tel { 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? 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; } /// /// 部门编码 /// public string? dept_code { get; set; } /// /// 业务员编码 /// public string? biller { get; set; } /// /// 下发状态 /// public string? issuance_status { get; set; } /// /// 采购订单 /// public string? purchase_order { get; set; } /// /// 出库类型(BIP) /// public string? outstock_type { get; set; } /// /// 出库仓库 /// public string? warehouse_code { get; set; } /// /// erp_pk /// public string? erp_pk { get; set; } /// /// erp_bill_code /// public string? erp_bill_code { get; set; } }