Zxd.Core/code/Zxd.Entity/Zxd/WxSzzySubproduct.cs

29 lines
899 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Zxd
{
[Table("WX_SZZYSUBPRODUCT")]
public class WxSzzySubproduct
{
[Key]
public int subproductid { get; set; }
public string? subproductname { get; set; }
public string? productcode { get; set; }
public decimal? price { get; set; }
public int? isEmpower { get; set; }
public int? producttype { get; set; }
public int? rightperiod { get; set; }
public int? mid { get; set; }
public int? productlevel { get; set; }
public int? productinvesttype { get; set; }
public int? productinvesttime { get; set; }
public string? callbacklink { get; set; }
public string? buylink { get; set; }
public int? isonlinebuy { get; set; }
}
}