TConfigErrMsg.cs 536 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;

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

        /// <summary>
	    /// 
	    /// </summary>
        [Column("ErrorNo")]
        public int? IntErrorNo { get; set; }
        /// <summary>
	    /// 
	    /// </summary>
        [Column("ErrorMsg")]
        public string StrErrorMsg { get; set; }
    }
}