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.
58 lines
1.6 KiB
58 lines
1.6 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxqad_sct_det
|
|
{
|
|
[Key]
|
|
public int xxqad_sct_uid { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxqad_sct_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_sct_site { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(18)]
|
|
public string xxqad_sct_part { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_sct_domain { get; set; }
|
|
|
|
[StringLength(36)]
|
|
public string xxqad_sct_ref { get; set; }
|
|
|
|
public decimal xxqad_sct_cst_tot { get; set; }
|
|
|
|
public DateTime? xxqad_sct_cst_date { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_sct_qadread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_sct_wmsread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_sct_scmread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxqad_sct_mesread { get; set; }
|
|
|
|
public string xxqad_sct_rmks { get; set; }
|
|
|
|
public DateTime? xxqad_sct_createdt { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_sct_createur { get; set; }
|
|
|
|
public DateTime? xxqad_sct_updatedt { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_sct_updateur { get; set; }
|
|
}
|
|
}
|
|
|