Zxd.Core/code/Zxd.Entity/Zxd/WxSzzySubProductGift.cs

30 lines
761 B
C#
Raw 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;
namespace Zxd.Entity.Zxd
{
[Table("WX_SZZYSUBPRODUCT_GIFT")]
public class WxSzzySubProductGift
{
public WxSzzySubProductGift()
{
}
public int Id { get; set; }
public int SubProductId { get; set; }
public string? SubProductName { get; set; }
public int GiftDays { get; set; }
public string? GiftDaysName { get; set; }
public int Sort { get; set; }
public int IsDefault { get; set; }
public int Type { get; set; }
public string? GiftName { get; set; }
public int Channel { get; set; }
/// <summary>
/// 外键赠送ID
/// </summary>
public int Activeid { get; set; }
public int? Deptid { get; set; }
}
}