TG.WXCRM.V4/Model/MAP/L2Soft_ProductDetail.cs

52 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }//默认天数
}
}