Files
Web_BLSKafka_Server_Prod/DAL/New_Models/TbWxmenu.cs
2025-11-21 08:48:01 +08:00

22 lines
380 B
C#

using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbWxmenu
{
public int Id { get; set; }
public string? Code { get; set; }
public string? Name { get; set; }
public string? Ename { get; set; }
public string? Twname { get; set; }
public string? Class { get; set; }
public int? Sort { get; set; }
}