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.
33 lines
1.1 KiB
33 lines
1.1 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace EFCoreDatabase.Entities;
|
|
|
|
[Table("V_MANAGE")]
|
|
public class V_MANAGE
|
|
{
|
|
[Column("MANAGE_ID")]
|
|
public int? MANAGE_ID { get; set; }
|
|
[Column("MANAGE_TYPE_ID")]
|
|
public int? MANAGE_TYPE_ID { get; set; }
|
|
[Column("MANAGE_TYPE_CODE")]
|
|
public string? MANAGE_TYPE_CODE { get; set; }
|
|
[Column("MANAGE_TYPE_NAME")]
|
|
public string? MANAGE_TYPE_NAME { get; set; }
|
|
[Column("MANAGE_STATUS")]
|
|
public string? MANAGE_STATUS { get; set; }
|
|
[Column("STOCK_BARCODE")]
|
|
public string? STOCK_BARCODE { get; set; }
|
|
[Column("START_POSITION")]
|
|
public string? START_POSITION { get; set; }
|
|
[Column("END_POSITION")]
|
|
public string? END_POSITION { 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_REMARK")]
|
|
public string? MANAGE_REMARK { get; set; }
|
|
}
|