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.
 
 
 
 
 

60 lines
1.6 KiB

using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_vp_mstr
{
[Key]
public int xxqad_vp_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_vp_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_vp_addr { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxqad_vp_part { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_vp_domain { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(36)]
public string xxqad_vp_vend_part { get; set; }
[StringLength(8)]
public string xxqad_vp_site { get; set; }
public decimal xxqad_vp_comment { get; set; }
[StringLength(1)]
public string xxqad_vp_qadread { get; set; }
[StringLength(1)]
public string xxqad_vp_wmsread { get; set; }
[StringLength(1)]
public string xxqad_vp_scmread { get; set; }
[StringLength(1)]
public string xxqad_vp_mesread { get; set; }
public string xxqad_vp_rmks { get; set; }
public DateTime? xxqad_vp_createdt { get; set; }
[StringLength(8)]
public string xxqad_vp_createur { get; set; }
public DateTime? xxqad_vp_updatedt { get; set; }
[StringLength(8)]
public string xxqad_vp_updateur { get; set; }
}
}