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.

64 lines
1.7 KiB

4 years ago
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_sche_mstr
{
[Key]
public int xxqad_sche_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_sche_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxqad_sche_part { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_sche_custpart { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_sche_domain { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_sche_cust { get; set; }
[StringLength(100)]
public string xxqad_sche_name { get; set; }
[StringLength(100)]
public string xxqad_sche_desc { get; set; }
public decimal xxqad_sche_comment { get; set; }
[StringLength(1)]
public string xxqad_sche_qadread { get; set; }
[StringLength(1)]
public string xxqad_sche_wmsread { get; set; }
[StringLength(1)]
public string xxqad_sche_scmread { get; set; }
[StringLength(1)]
public string xxqad_sche_mesread { get; set; }
public string xxqad_sche_rmks { get; set; }
public DateTime? xxqad_sche_createdt { get; set; }
[StringLength(8)]
public string xxqad_sche_createur { get; set; }
public DateTime? xxqad_sche_updatedt { get; set; }
[StringLength(8)]
public string xxqad_sche_updateur { get; set; }
}
}