Zxd.Core/code/Zxd.Entity/Zxd/WxSzzySubproductCh.cs

22 lines
558 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_CH")]
public class WxSzzySubproductCh
{
[Key]
public int id { get; set; }
public int subproductid { get; set; }
public string? companycode { get; set; }
public string? subproductname { get; set; }
public int? isEmpower { get; set; }
public int? isValid { get; set; }
public int? channel { get; set; }
}
}