TConfigPoint.cs 775 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 
	/// </summary>
    [Table("t_config_point")]
    public partial class TConfigPoint : IdEntity
    {
        public TConfigPoint()
        {
        }

        /// <summary>
	    /// 
	    /// </summary>
        [Column("No")]
        public int? No { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("Barcode")]
        public string StrBarcode { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("AreaType")]
        public int? AreaType { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("RegionName")]
        public string StrRegionName { get; set; }
    }
}