Zxd.Core/code/Zxd.Entity/Zxd/WxSzzyProduct.cs

41 lines
847 B
C#

using System;
namespace Zxd.Entity.Zxd
{
[Table("WX_SZZYPRODUCT")]
public class WxSzzyProduct
{
public WxSzzyProduct()
{
}
[Key]
[Column("productid")]
public int ProductId { get; set; }
[Column("productname")]
public string? ProductName { get; set; }
[Column("productdesc")]
public string? ProductDesc { get; set; }
[Column("productbriefdesc")]
public string? ProductBriefDesc { get; set; }
[Column("isvalid")]
public int? IsValid { get; set; }
[Column("productguide")]
public string? ProductGuide { get; set; }
[Column("productcode")]
public string? ProductCode { get; set; }
public int Parentid { get; set; }
public int Sort { get; set; }
public int Level { get; set; }
}
}