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.
52 lines
1.7 KiB
52 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_RETURN:RecordEntity
|
|
{
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
[Key]
|
|
public long UID { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
public string Barcode { get; set; }
|
|
public string Loccode { get; set; }
|
|
public string Pobillnum { get; set; }
|
|
public decimal Poline { get; set; }
|
|
public string Inspecttype { get; set; }
|
|
public string Partcode { get; set; }
|
|
public string Batch { get; set; }
|
|
public decimal ReceiveQty { get; set; }
|
|
public decimal SampleQty { get; set; }
|
|
public decimal Inspqty { get; set; }
|
|
public decimal Passqty { get; set; }
|
|
public decimal Failqty { get; set; }
|
|
public decimal Crackqty { get; set; }
|
|
public string Inspresult { get; set; }
|
|
public string Failreason { get; set; }
|
|
public string Vendid { get; set; }
|
|
public string Vendbatch { get; set; }
|
|
public string state { get; set; }
|
|
public System.DateTime Billtime { get; set; }
|
|
public string Domain { get; set; }
|
|
public string Site { get; set; }
|
|
public string By1 { get; set; }
|
|
public string By2 { get; set; }
|
|
public string By3 { get; set; }
|
|
public string QualityNo { get; set; }
|
|
|
|
public decimal RejectQty { get; set; }
|
|
|
|
public string RejectBillNum { get; set; }
|
|
public string AsnBillNum { get; set; }
|
|
|
|
|
|
}
|
|
}
|
|
|