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.
40 lines
1.4 KiB
40 lines
1.4 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace EFCoreDatabase.Entities
|
|
{
|
|
[Table("MANAGE_MAIN")]
|
|
public class MANAGE_MAIN
|
|
{
|
|
[Column("MANAGE_ID")]
|
|
[Key]
|
|
public int MANAGE_ID { get; set; }
|
|
[Column("PLAN_ID")]
|
|
public int PLAN_ID { get; set; }
|
|
[Column("MANAGE_TYPE_CODE")]
|
|
public string MANAGE_TYPE_CODE { get; set; }
|
|
[Column("MANAGE_STATUS")]
|
|
public string MANAGE_STATUS { get; set; }
|
|
[Column("STOCK_BARCODE")]
|
|
public string STOCK_BARCODE { get; set; }
|
|
[Column("START_CELL_ID")]
|
|
public int START_CELL_ID { get; set; }
|
|
[Column("END_CELL_ID")]
|
|
public int END_CELL_ID { get; set; }
|
|
[Column("MANAGE_OPERATOR")]
|
|
public string MANAGE_OPERATOR { get; set; }
|
|
[Column("MANAGE_BEGIN_TIME")]
|
|
public string MANAGE_BEGIN_TIME { get; set; }
|
|
[Column("MANAGE_END_TIME")]
|
|
public string MANAGE_END_TIME { get; set; }
|
|
[Column("MANAGE_LEVEL")]
|
|
public string MANAGE_LEVEL { get; set; }
|
|
[Column("MANAGE_REMARK")]
|
|
public string MANAGE_REMARK { get; set; }
|
|
[Column("MANAGE_CONFIRM_TIME")]
|
|
public string MANAGE_CONFIRM_TIME { get; set; }
|
|
//[Column("ERROR_TXT")]
|
|
//public string ERROR_TXT { get; set; }
|
|
|
|
}
|
|
}
|