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.

99 lines
2.7 KiB

1 year ago
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_cm_mstr
{
[Key]
public int xxqad_cm_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_cm_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_cm_addr { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_cm_domain { get; set; }
[StringLength(8)]
public string xxqad_cm_site { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(100)]
public string xxqad_cm_name { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(100)]
public string xxqad_cm_line1 { get; set; }
[StringLength(100)]
public string xxqad_cm_line2 { get; set; }
[StringLength(100)]
public string xxqad_cm_line3 { get; set; }
[StringLength(8)]
public string xxqad_cm_country { get; set; }
[StringLength(8)]
public string xxqad_cm_city { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(15)]
public string xxqad_cm_phone { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(15)]
public string xxqad_cm_fax { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(15)]
public string xxqad_cm_pst_id { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_cm_attn { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(15)]
public string xxqad_cm_curr { get; set; }
public bool xxqad_cm_active { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(2)]
public string xxqad_cm_promo { get; set; }
public int xxqad_cm_type { get; set; }
[StringLength(1)]
public string xxqad_cm_qadread { get; set; }
[StringLength(1)]
public string xxqad_cm_wmsread { get; set; }
[StringLength(1)]
public string xxqad_cm_scmread { get; set; }
[StringLength(1)]
public string xxqad_cm_mesread { get; set; }
public string xxqad_cm_rmks { get; set; }
public DateTime? xxqad_cm_createdt { get; set; }
[StringLength(8)]
public string xxqad_cm_createur { get; set; }
public DateTime? xxqad_cm_updatedt { get; set; }
[StringLength(8)]
public string xxqad_cm_updateur { get; set; }
}
}