You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
803 B
C#
31 lines
803 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Areas.MvcShipping.DB
|
|
{
|
|
[Table("tSysEnumValue")]
|
|
public class SysEnumValue
|
|
{
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public decimal LangID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
public decimal EnumTypeID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
public string EnumValueID { get; set; }
|
|
|
|
public string EnumValueName { get; set; }
|
|
public string IsDefault { get; set; }
|
|
public decimal DispIndex { get; set; }
|
|
public string VerNo { get; set; }
|
|
public string EnumValueName_2 { get; set; }
|
|
}
|
|
} |