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.
 
 
 
 
 

85 lines
2.4 KiB

using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_pt_mstr
{
[Key]
public int xxqad_pt_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_pt_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxqad_pt_part { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pt_domain { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pt_site { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(4)]
public string xxqad_pt_um { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(36)]
public string xxqad_pt_desc1 { get; set; }
[StringLength(36)]
public string xxqad_pt_desc2 { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pt_dsgn_grp { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pt_promo { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pt_part_type { get; set; }
[StringLength(8)]
public string xxqad_pt_group { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pt_prod_line { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pt_status { get; set; }
[StringLength(1)]
public string xxqad_pt_qadread { get; set; }
[StringLength(1)]
public string xxqad_pt_wmsread { get; set; }
[StringLength(1)]
public string xxqad_pt_scmread { get; set; }
[StringLength(1)]
public string xxqad_pt_mesread { get; set; }
public string xxqad_pt_rmks { get; set; }
public DateTime? xxqad_pt_createdt { get; set; }
[StringLength(8)]
public string xxqad_pt_createur { get; set; }
public DateTime? xxqad_pt_updatedt { get; set; }
[StringLength(8)]
public string xxqad_pt_updateur { get; set; }
}
}