52 lines
1.6 KiB
C#
52 lines
1.6 KiB
C#
using System;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
using System.Linq;
|
||
|
||
namespace WX.CRM.Model.Entity
|
||
{
|
||
public class L2Soft_ProductDetail
|
||
{
|
||
[NotMapped]
|
||
public decimal PRODUCTID { get; set; }//id
|
||
[NotMapped]
|
||
public string PRODUCTCODE { get; set; }//大类产品ID
|
||
[NotMapped]
|
||
public string PRODUCTNAME { get; set; }//大类产品名称
|
||
[NotMapped]
|
||
public Nullable<short> ISDISABLED { get; set; }//是否禁用(1是禁用、0是可用)
|
||
[NotMapped]
|
||
public decimal USECLIENT { get; set; }
|
||
[NotMapped]
|
||
public decimal? GROUPID { get; set; }
|
||
[NotMapped]
|
||
public IQueryable<L2Soft_Product> softProduct { get; set; }
|
||
}
|
||
public class L2Soft_Product
|
||
{
|
||
[NotMapped]
|
||
public decimal PRODUCTID { get; set; }//小类id
|
||
[NotMapped]
|
||
public string PRODUCTCODE { get; set; }//小类产品ID
|
||
[NotMapped]
|
||
public string PRODUCTNAME { get; set; }//小类产品名称
|
||
[NotMapped]
|
||
public Nullable<decimal> PRICE { get; set; }//价格
|
||
[NotMapped]
|
||
public Nullable<decimal> DAYS { get; set; }//天数
|
||
[NotMapped]
|
||
public short ISDISABLED { get; set; }//是否禁用
|
||
[NotMapped]
|
||
public IQueryable<L2Soft_Module> softModule { get; set; }
|
||
}
|
||
|
||
public class L2Soft_Module
|
||
{
|
||
[NotMapped]
|
||
public decimal MODULEID { get; set; }//模块id
|
||
[NotMapped]
|
||
public string MODULENAME { get; set; }//模块名
|
||
[NotMapped]
|
||
public decimal DEFAULTDAYS { get; set; }//默认天数
|
||
}
|
||
}
|