30 lines
819 B
C#
30 lines
819 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_SZZYSUBPRODUCT_GIFT")]
|
|
public class WX_SZZYSUBPRODUCT_GIFT
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
public decimal SUBPRODUCTID { get; set; }
|
|
public string SUBPRODUCTNAME { get; set; }
|
|
public decimal GIFTDAYS { get; set; }
|
|
public string GIFTDAYSNAME { get; set; }
|
|
public decimal SORT { get; set; }
|
|
public decimal ISDEFALUT { get; set; }
|
|
|
|
public decimal TYPE { get; set; }
|
|
|
|
public string GIFTNAME { get; set; }
|
|
|
|
public decimal? ISSHOW { get; set; }
|
|
/// <summary>
|
|
/// 赠送ID
|
|
/// </summary>
|
|
public decimal? ACTIVEID { get; set; }
|
|
|
|
}
|
|
}
|