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.
34 lines
1.1 KiB
34 lines
1.1 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Scp.v1.Domain
|
|
{
|
|
public class TB_RECEIVE_QAD:Entity<long>
|
|
{
|
|
|
|
public string RecvBillNum { get; set; }
|
|
public string PoBillNum { get; set; }
|
|
public string AsnBillNum { get; set; }
|
|
public string Site { get; set; }
|
|
public string VendId { get; set; }
|
|
public DateTime ShipTime { get; set; }
|
|
public int State { get; set; }
|
|
public string Remark { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public string CreateUser { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
public Guid GUID { get; set; }
|
|
public string OperName { get; set; }
|
|
public int BillType { get; set; }
|
|
public string ErpRecvBillNum { get; set; }
|
|
public string Tax { get; set; }
|
|
public string Extend1 { get; set; }
|
|
public string Extend2 { get; set; }
|
|
public string Extend3 { get; set; }
|
|
public string SubSite { get; set; }
|
|
|
|
|
|
}
|
|
}
|