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.
47 lines
1.7 KiB
47 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public partial class TB_PALLETS_BTL
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public long UID { get; set; }
|
|
[Key]
|
|
public string PalletNum{ get; set; }
|
|
public string AsnBillNum { get; set; }
|
|
public int SumBox { get; set; }
|
|
public string PoBillNum { get; set; }
|
|
public decimal SumQty { get; set; }
|
|
public string VendId { get; set; }
|
|
public string VendName { get; set; }
|
|
public string ShipTime { get; set; }
|
|
public string PartCode { get; set; }
|
|
public string PartCode1 { get; set; }
|
|
public string PartCode2 { get; set; }
|
|
public string PartCode3 { get; set; }
|
|
public string PartCode4 { get; set; }
|
|
public string PartCode5 { get; set; }
|
|
public string Box { get; set; }
|
|
public string Box1 { get; set; }
|
|
public string Box2 { get; set; }
|
|
public string Box3 { get; set; }
|
|
public string Box4 { get; set; }
|
|
public string Box5 { get; set; }
|
|
public string PackQty { get; set; }
|
|
public string PackQty1 { get; set; }
|
|
public string PackQty2 { get; set; }
|
|
public string PackQty3 { get; set; }
|
|
public string PackQty4 { get; set; }
|
|
public string PackQty5 { get; set; }
|
|
public string PalletCode { get; set; }
|
|
[NotMapped]
|
|
public List<long> UIDList { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
}
|
|
}
|
|
|