14 lines
329 B
C#
14 lines
329 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_SZZYPRODUCTMODULE")]
|
|
public class WX_SZZYPRODUCTMODULE
|
|
{
|
|
[Key]
|
|
public decimal MID { get; set; }
|
|
public string MODULENAME { get; set; }
|
|
}
|
|
}
|