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.
67 lines
2.0 KiB
67 lines
2.0 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace EFCoreDatabase.Entities
|
|
{
|
|
[Table("IO_CONTROL")]
|
|
public class IO_CONTROL
|
|
{
|
|
[Column("CONTROL_ID")]
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int CONTROL_ID { get; set; }
|
|
[Column("RELATIVE_CONTROL_ID")]
|
|
public int RELATIVE_CONTROL_ID { get; set; }
|
|
|
|
[Column("MANAGE_ID")]
|
|
public int MANAGE_ID { get; set; }
|
|
[Column("CELL_GROUP")]
|
|
public string CELL_GROUP { get; set; }
|
|
[Column("STOCK_BARCODE")]
|
|
public string STOCK_BARCODE { get; set; }
|
|
|
|
[Column("PRE_CONTROL_STATUS")]
|
|
public string PRE_CONTROL_STATUS { get; set; }
|
|
|
|
[Column("CONTROL_TASK_TYPE")]
|
|
public int CONTROL_TASK_TYPE { get; set; }
|
|
|
|
[Column("CONTROL_TASK_LEVEL")]
|
|
public string CONTROL_TASK_LEVEL { get; set; }
|
|
|
|
[Column("START_WAREHOUSE_CODE")]
|
|
public string START_WAREHOUSE_CODE { get; set; }
|
|
|
|
[Column("END_WAREHOUSE_CODE")]
|
|
public string END_WAREHOUSE_CODE { get; set; }
|
|
|
|
[Column("START_DEVICE_CODE")]
|
|
public string START_DEVICE_CODE { get; set; }
|
|
|
|
[Column("END_DEVICE_CODE")]
|
|
public string END_DEVICE_CODE { get; set; }
|
|
|
|
[Column("CONTROL_STATUS")]
|
|
public int CONTROL_STATUS { get; set; }
|
|
|
|
[Column("ERROR_TEXT")]
|
|
public string ERROR_TEXT { get; set; }
|
|
|
|
[Column("CONTROL_BEGIN_TIME")]
|
|
public string CONTROL_BEGIN_TIME { get; set; }
|
|
|
|
[Column("CONTROL_END_TIME")]
|
|
public string CONTROL_END_TIME { get; set; }
|
|
|
|
[Column("CONTROL_REMARK")]
|
|
public string CONTROL_REMARK { get; set; }
|
|
|
|
[Column("BOX_TYPE")]
|
|
public string BOX_TYPE { get; set; }
|
|
|
|
[Column("RF_DATA")]
|
|
public string RF_DATA { get; set; }
|
|
[Column("UNLOADING_TASK_COUNT")]
|
|
public int UNLOADING_TASK_COUNT { get; set; }
|
|
}
|
|
}
|