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.

57 lines
1.5 KiB

1 year ago
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_loc_det
{
[Key]
public int xxqad_loc_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_loc_seq { get; set; }
[StringLength(8)]
public string xxqad_loc_loc { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_loc_site { get; set; }
[StringLength(50)]
public string xxqad_loc_desc { get; set; }
[StringLength(8)]
public string xxqad_loc_type { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_loc_domain { get; set; }
[StringLength(1)]
public string xxqad_loc_qadread { get; set; }
[StringLength(1)]
public string xxqad_loc_wmsread { get; set; }
[StringLength(1)]
public string xxqad_loc_scmread { get; set; }
[StringLength(1)]
public string xxqad_loc_mesread { get; set; }
public string xxqad_loc_rmks { get; set; }
public DateTime? xxqad_loc_createdt { get; set; }
[StringLength(8)]
public string xxqad_loc_createur { get; set; }
public DateTime? xxqad_loc_updatedt { get; set; }
[StringLength(8)]
public string xxqad_loc_updateur { get; set; }
}
}