|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
namespace WMS_GIRAF_Interface.Entities;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 数据表:destinationId
|
|
|
|
/// </summary>
|
|
|
|
[Table("destinationId")]
|
|
|
|
public class destinationId
|
|
|
|
{
|
|
|
|
|
|
|
|
[Column("ID")]
|
|
|
|
public string? ID { get; set; }
|
|
|
|
[Column("AREA")]
|
|
|
|
public string? AREA { get; set; }
|
|
|
|
[Column("DEVICE_CODE")]
|
|
|
|
public string? DEVICE_CODE { get; set; }
|
|
|
|
|
|
|
|
}
|