ComplianceServer/oldcode/Model/Entity/L2_SOFT_PRODUCTMODULE.cs

28 lines
673 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.L2_SOFT_PRODUCTMODULE")]
public partial class L2_SOFT_PRODUCTMODULE
{
[Key]
public decimal PKID { get; set; }
public decimal PRODUCTID { get; set; }
public decimal MODULEID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
public virtual L2_SOFT_PRODUCT L2_SOFT_PRODUCT { get; set; }
}
}