using System;
using System.Collections.Generic;
using SqlSugar;
namespace JiepeiWMS.Model.Models
{
///
///领料订单表
///
[SugarTable("WMSaleInfo", "Jiepei_WMS")]
public class WMSaleInfo
{
public WMSaleInfo()
{
}
///
/// 主键id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 订单状态
///
public int Status { get; set; }
///
/// 审核Key关键字
///
public string CheckKey { get; set; }
///
/// 领料人id
///
public int EmployeeId { get; set; }
///
/// 仓库id
///
public int WareHouseId { get; set; }
///
/// 类型
///
public int PayType { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 支付金额
///
public decimal PayAmount { get; set; }
///
/// 审批人
///
public int CheckAdminId { get; set; }
///
/// 审批等级
///
public int CheckRank { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 领料编码
///
public string SaleCode { get; set; }
///
/// 修改时间
///
public DateTime? UpdateTime { get; set; }
///
/// 主体id
///
public int SysOrgId { get; set; }
///
/// 仓库名称
///
[SugarColumn(IsIgnore = true)]
public string WareHouseName { get; set; }
///
/// 部门名称
///
[SugarColumn(IsIgnore = true)]
public string DepartmentName { get; set; }
///
/// 审核人
///
[SugarColumn(IsIgnore = true)]
public string CheckAdminName { get; set; }
///
/// 领料人
///
[SugarColumn(IsIgnore = true)]
public string EmployeeName { get; set; }
///
/// 发料人
///
[SugarColumn(IsIgnore = true)]
public string IssueName { get; set; }
///
/// 领料类状态
///
[SugarColumn(IsIgnore = true)]
public string SaleStatus { get; set; }
///
/// 领料类型
///
[SugarColumn(IsIgnore = true)]
public string PayTypeName { get; set; }
///
/// 部门Id
///
[SugarColumn(IsIgnore = true)]
public int? DepartmentId { get; set; }
///
/// 审批数组步骤条显示
///
[SugarColumn(IsIgnore = true)]
public List CheckStrStep { get; set; }
///
/// 审批级别步骤条显示
///
[SugarColumn(IsIgnore = true)]
public int CheckRankStep { get; set; }
///
/// 当前登录人Id
///
[SugarColumn(IsIgnore = true)]
public int AdminId { get; set; }
///
/// 商品名称
///
[SugarColumn(IsIgnore = true)]
public string ProductName { get; set; }
///
/// 商品编码
///
[SugarColumn(IsIgnore = true)]
public string ProductCode { get; set; }
///
/// 领料详情列表
///
[SugarColumn(IsIgnore = true)]
public List SaleDetailList { get; set; }
///
/// 商品信息
///
[SugarColumn(IsIgnore = true)]
public List noMatchData { get; set; }
///
/// 出库权限
///
[SugarColumn(IsIgnore = true)]
public bool MayOut { get; set; }
}
}