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.
 
 
 
 
 

45 lines
1.1 KiB

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxwms_ctrl
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int xxwms_uid { get; set; }
[Key]
[StringLength(50)]
public string xxwms_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxwms_table { get; set; }
public int xxwms_table_qty { get; set; }
[StringLength(1)]
public string xxwms_qad { get; set; }
[StringLength(1)]
public string xxwms_mes { get; set; }
[StringLength(1)]
public string xxwms_scm { get; set; }
[StringLength(1)]
public string xxwms_wms { get; set; }
public string xxwms_rmks { get; set; }
public DateTime xxwms_create_time { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(20)]
public string xxwms_domain { get; set; }
[StringLength(8)]
public string xxwms_site { get; set; }
}
}