You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.7 KiB

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.ScpEntity
{
public partial class V_TB_ASK_DETAIL_PO
{
[Key]
public long UID { get; set; }
public string PoBillNum { get; set; }
public int ModType { get; set; }
public string ModType_DESC { get; set; }
public string AskBillNum { get; set; }
public string VendName { get; set; }
public string VendId { get; set; }
public DateTime BeginTime { get; set; }
public int PoLine { get; set; }
public string PartCode { get; set; }
public string PartDesc { get; set; }
public string VendPartCode { get; set; }
public string PoUnit { get; set; }
public decimal Price { get; set; }
public decimal AskQty { get; set; }
public decimal ShippedQty { get; set; }
public decimal ReceivedQty { get; set; }
public decimal ArriveQty { get; set; }
public DateTime EndTime { get; set; }
public string Site_Desc { get; set; }
public string Buyer { get; set; }
public string BuyerPhone { get; set; }
[NotMapped]
public string Site { get; set; }
[NotMapped]
public string SubSite { get; set; }
#region 查询条件
[NotMapped]
public DateTime? TimeBegin { get; set; }
[NotMapped]
public DateTime? TimeEnd { get; set; }
[NotMapped]
public List<string> UserInAddress { set; get; }
[NotMapped]
public List<string> UserInSubSite { set; get; }
[NotMapped]
public string UserName { set; get; }
#endregion
}
}