Config_Point.cs
458 Bytes
using RCS.Model.Entity.PrimaryKey;
using System.ComponentModel.DataAnnotations.Schema;
namespace RCS.Model.Entity
{
[Table("t_config_point")]
public class Config_Point : IdEntity
{
public int No { get; set; }
public int IntX { get; set; }
public int IntY { get; set; }
public string Barcode { get; set; }
public string AreaType { get; set; }
public string RegionName { get; set; }
}
}