using System; using System.Linq; using System.Text; using SqlSugar; namespace JiepeiWMS.Model.Models { /// ///报价信息表 /// [SugarTable("WMQuoteInfo", "Jiepei_WMS")] public class WMQuoteInfo { public WMQuoteInfo() { } /// /// Id主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 审核Key /// public string CheckKey { get; set; } /// /// 采购编号 /// public string QuoteCode { get; set; } /// /// 状态 /// public int Status { get; set; } /// /// 申请人id /// public int EmployeeId { get; set; } /// /// 供应商id /// public int? SupplierId { get; set; } /// /// 实际金额 /// public decimal? ActualAmount { get; set; } /// /// 到货时间 /// public DateTime? ExpectedArrivalTime { get; set; } /// /// 审核人Id /// public int CheckAdminId { get; set; } /// /// 审核级别 /// public int CheckRank { get; set; } /// /// 审核备注 /// public string CheckRemark { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 支付类型 1 现金 2 月结 3 备用金 /// public int PayType { get; set; } /// /// 报价合同 /// public string FileUrl { get; set; } /// /// 支付凭证图片 /// public string PayPic { get; set; } /// /// 追加评论 /// public string AddRemark { get; set; } /// /// 结算金额 /// public decimal? SettlementAmount { get; set; } /// /// 收款人 /// public string Payee { get; set; } /// /// 开户支行 /// public string Bank { get; set; } /// /// 开户行账号 /// public string BankAccount { get; set; } /// /// 主体id /// public int SysOrgId { get; set; } /// ///打回类型调用OA接口用 /// public int RepulseType { get; set; } /// /// 供应商名称 /// [SugarColumn(IsIgnore = true)] public string SupplierName { get; set; } /// /// 申请人 /// [SugarColumn(IsIgnore = true)] public string EmployeeName { get; set; } /// /// 审核人 /// [SugarColumn(IsIgnore = true)] public string CheckAdminName { get; set; } /// /// 状态名 /// [SugarColumn(IsIgnore = true)] public string StatusName { get; set; } } }