ComplianceServer/oldcode/Model/Entity/WX_SZZYPRODUCTMODULE.cs

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; }
}
}