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.

75 lines
1.9 KiB

4 years ago
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using ChangKeTec.Wms.Models.Enums;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TF_PO
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public int UID { get; set; }
[NotMapped]
public string ״̬ => ((EnumFormState)State).ToString();
[Key]
[StringLength(50)]
[DisplayName("���ݱ���")]
public string BillNum { get; set; }
public EnumBillType BillType { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("��Ӧ�̱���")]
public string VendId { get; set; }
[NotMapped]
[DisplayName("��Ӧ������")]
public string VendName => WmsCache.GetVenderName(VendId);
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("����Ա")]
public string OperName { get; set; }
[DisplayName("����ʱ��")]
public DateTime BillTime { get; set; }
[StringLength(50)]
[DisplayName("��������")]
public string ModType { get; set; }
[StringLength(50)]
[DisplayName("��ϵ��")]
public string Contacter { get; set; }
[StringLength(50)]
[DisplayName("�ջ��ص�")]
public string ShipToSite { get; set; }
[StringLength(50)]
public string Promo { get; set; }
[StringLength(50)]
[DisplayName("�ɹ�Ա")]
public string Buyer { get; set; }
[StringLength(50)]
[DisplayName("�ɹ�Ա�绰")]
public string BuyerPhone { get; set; }
public int State { get; set; }
[StringLength(500)]
[DisplayName("��ע")]
public string Remark { get; set; }
}
}