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.
70 lines
1.9 KiB
70 lines
1.9 KiB
4 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace CK.SCP.Models.UniApiEntity
|
||
|
{
|
||
|
public partial class xxbom_ro_mstr
|
||
|
{
|
||
|
[Key]
|
||
|
public int xxbom_ro_UID { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string xxbom_ro_seq { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(18)]
|
||
|
public string xxbom_ro_routing { get; set; }
|
||
|
|
||
|
public int xxbom_ro_op { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(24)]
|
||
|
public string xxbom_ro_desc { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(8)]
|
||
|
public string xxbom_ro_wkctr { get; set; }
|
||
|
|
||
|
public decimal xxbom_ro_run { get; set; }
|
||
|
|
||
|
public DateTime? xxbom_ro_start { get; set; }
|
||
|
|
||
|
public DateTime? xxbom_ro_end { get; set; }
|
||
|
|
||
|
public bool xxbom_ro_milestone { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(1)]
|
||
|
public string xxbom_ro_qadread { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(1)]
|
||
|
public string xxbom_ro_wmsread { get; set; }
|
||
|
|
||
|
[StringLength(1)]
|
||
|
public string xxbom_ro_scmread { get; set; }
|
||
|
|
||
|
[StringLength(1)]
|
||
|
public string xxbom_ro_mesread { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string xxbom_ro_rmks { get; set; }
|
||
|
|
||
|
public DateTime xxbom_ro_createdt { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(8)]
|
||
|
public string xxbom_ro_createur { get; set; }
|
||
|
|
||
|
public DateTime xxbom_ro_updatedt { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(8)]
|
||
|
public string xxbom_ro_updateur { get; set; }
|
||
|
|
||
|
[StringLength(8)]
|
||
|
public string xxbom_ro_domain { get; set; }
|
||
|
}
|
||
|
}
|