using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
///
/// 原材料调拨出库
///
[SugarTable("wms_rawmat_transferoutstock_h")]
public partial class WmsRawmatTransferoutstockH : BaseEntity
{
public WmsRawmatTransferoutstockH()
{
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? outstock_type { get; set; }
///
/// 交易类型BIP
///
public string? transaction_type { get; set; }
///
/// 出库仓库
///
public string? warehouse_code { get; set; }
///
/// erp_pk
///
public string? erp_pk { get; set; }
///
/// 调拨订单id
///
public string? transfer_order_id { get; set; }
///
/// bip入库组织vid
///
public string? instockorg_id { get; set; }
///
/// bip入库组织id
///
public string? instockorg_code { get; set; }
///
/// erp_bill_code
///
public string? erp_bill_code { get; set; }
}