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.2 KiB
46 lines
1.2 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxscm_ctrl
|
|
{
|
|
[Key]
|
|
public int xxscm_uid { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxscm_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxscm_domain { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxscm_site { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(18)]
|
|
public string xxscm_table { get; set; }
|
|
|
|
public int xxscm_table_qty { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_qad { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_mes { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_scm { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_wms { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
public string xxscm_rmks { get; set; }
|
|
|
|
public DateTime xxscm_create_time { get; set; }
|
|
}
|
|
}
|
|
|