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.
66 lines
1.7 KiB
66 lines
1.7 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxqad_ld_det
|
|
{
|
|
[Key]
|
|
public int xxqad_ld_uid { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxqad_ld_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_ld_site { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(18)]
|
|
public string xxqad_ld_part { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_ld_loc { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_ld_lot { get; set; }
|
|
|
|
public DateTime? xxqad_ld_date { get; set; }
|
|
|
|
public DateTime? xxqad_ld_time { get; set; }
|
|
|
|
public decimal xxqad_ld_qty { get; set; }
|
|
|
|
[StringLength(2)]
|
|
public string xxqad_ld_um { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string xxqad_ld_domain { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_ld_qadread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_ld_wmsread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_ld_scmread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_ld_mesread { get; set; }
|
|
|
|
public string xxqad_ld_rmks { get; set; }
|
|
|
|
public DateTime? xxqad_ld_createdt { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_ld_createur { get; set; }
|
|
|
|
public DateTime? xxqad_ld_updatedt { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_ld_updateur { get; set; }
|
|
}
|
|
}
|
|
|