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.
57 lines
2.5 KiB
57 lines
2.5 KiB
4 years ago
|
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.UniApiEntity
|
||
|
{
|
||
|
public partial class xxwms_qua_det
|
||
|
{
|
||
|
[Key]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public int xxwms_qua_uid { get; set; }
|
||
|
|
||
|
public string xxwms_qua_seq { get; set; }
|
||
|
public string xxwms_qua_nbr { get; set; }
|
||
|
public string xxwms_qua_infotype { get; set; }
|
||
|
public string xxwms_qua_barcode { get; set; }
|
||
|
public string xxwms_qua_loccode { get; set; }
|
||
|
public string xxwms_qua_pobillnum { get; set; }
|
||
|
public Nullable<decimal> xxwms_qua_poline { get; set; }
|
||
|
public string xxwms_qua_inspecttype { get; set; }
|
||
|
public string xxwms_qua_partcode { get; set; }
|
||
|
public string xxwms_qua_partdesc { get; set; }
|
||
|
public string xxwms_qua_batch { get; set; }
|
||
|
public decimal xxwms_qua_receiveqty { get; set; }
|
||
|
public decimal xxwms_qua_sampleqty { get; set; }
|
||
|
public decimal xxwms_qua_inspqty { get; set; }
|
||
|
public decimal xxwms_qua_passqty { get; set; }
|
||
|
public decimal xxwms_qua_failqty { get; set; }
|
||
|
public decimal xxwms_qua_crackqty { get; set; }
|
||
|
public string xxwms_qua_inspresult { get; set; }
|
||
|
public string xxwms_qua_failreason { get; set; }
|
||
|
public string xxwms_qua_vendid { get; set; }
|
||
|
public string xxwms_qua_vendbatch { get; set; }
|
||
|
public string xxwms_qua_state { get; set; }
|
||
|
public System.DateTime xxwms_qua_billtime { get; set; }
|
||
|
public string xxwms_qua_domain { get; set; }
|
||
|
public string xxwms_qua_site { get; set; }
|
||
|
public string xxwms_qua_by1 { get; set; }
|
||
|
public string xxwms_qua_by2 { get; set; }
|
||
|
public string xxwms_qua_by3 { get; set; }
|
||
|
public string xxwms_qua_scpread { get; set; }
|
||
|
public string xxwms_qua_qadread { get; set; }
|
||
|
public string xxwms_qua_wmsread { get; set; }
|
||
|
public string xxwms_qua_scmread { get; set; }
|
||
|
public string xxwms_qua_mesread { get; set; }
|
||
|
public string xxwms_qua_rmks { get; set; }
|
||
|
public Nullable<System.DateTime> xxwms_qua_createdt { get; set; }
|
||
|
public string xxwms_qua_createur { get; set; }
|
||
|
public Nullable<System.DateTime> xxwms_qua_updatedt { get; set; }
|
||
|
public string xxwms_qua_updateur { get; set; }
|
||
|
}
|
||
|
}
|