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.

71 lines
2.0 KiB

4 years ago
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_ro_mstr
{
[Key]
public int xxqad_ro_UID { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_ro_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_ro_domain { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxqad_ro_routing { get; set; }
public int xxqad_ro_op { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(24)]
public string xxqad_ro_desc { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_ro_wkctr { get; set; }
public decimal xxqad_ro_run { get; set; }
public DateTime? xxqad_ro_start { get; set; }
public DateTime? xxqad_ro_end { get; set; }
public bool xxqad_ro_milestone { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(1)]
public string xxqad_ro_qadread { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(1)]
public string xxqad_ro_wmsread { get; set; }
[StringLength(1)]
public string xxqad_ro_scmread { get; set; }
[StringLength(1)]
public string xxqad_ro_mesread { get; set; }
[StringLength(50)]
public string xxqad_ro_rmks { get; set; }
public DateTime xxqad_ro_createdt { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_ro_createur { get; set; }
public DateTime xxqad_ro_updatedt { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_ro_updateur { get; set; }
}
}