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.

46 lines
1.1 KiB

4 years ago
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_ctrl
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int xxqad_uid { get; set; }
[Key]
[StringLength(50)]
public string xxqad_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxqad_table { get; set; }
public int xxqad_table_qty { get; set; }
[StringLength(1)]
public string xxqad_qad { get; set; }
[StringLength(1)]
public string xxqad_mes { get; set; }
[StringLength(1)]
public string xxqad_scm { get; set; }
[StringLength(1)]
public string xxqad_wms { get; set; }
public string xxqad_rmks { get; set; }
4 years ago
public DateTime xxqad_create_time { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(20)]
public string xxqad_domain { get; set; }
[StringLength(8)]
public string xxqad_site { get; set; }
4 years ago
}
}