34 lines
722 B
C#
34 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("WX_SZZYPRODUCT")]
|
|
public class WxSzzyProduct
|
|
{
|
|
[Key]
|
|
public int Productid { get; set; }
|
|
|
|
public string? Productname { get; set; }
|
|
|
|
public string? Productdesc { get; set; }
|
|
|
|
public string? Productbriefdesc { get; set; }
|
|
|
|
public int? Isvip { get; set; }
|
|
|
|
public string? Productguide { get; set; }
|
|
|
|
public string? Productcode { get; set; }
|
|
|
|
public int Parentid { get; set; }
|
|
|
|
public int Sort { get; set; }
|
|
|
|
public int Level { get; set; }
|
|
}
|
|
}
|