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.
 
 
 
 
 

69 lines
2.0 KiB

using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_line_mstr
{
[Key]
public int xxqad_line_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_line_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_line_domain { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_line_site { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_line_ln { get; set; }
[StringLength(50)]
public string xxqad_line_desc { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_line_part { get; set; }
[StringLength(3)]
public string xxqad_line_primary { get; set; }
public int? xxqad_line_rate { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(1)]
public string xxqad_line_qadread { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(1)]
public string xxqad_line_mesread { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(1)]
public string xxqad_line_wmsread { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(1)]
public string xxqad_line_scmread { get; set; }
[StringLength(50)]
public string xxqad_line_rmks { get; set; }
public DateTime xxqad_line_createdt { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_line_createur { get; set; }
public DateTime? xxqad_line_updatedt { get; set; }
[StringLength(50)]
public string xxqad_line_updateur { get; set; }
}
}