This commit is contained in:
Putoo
2026-06-01 18:49:17 +08:00
parent 8a5b6d31ca
commit eb81a1c381
50 changed files with 1367 additions and 59 deletions

View File

@@ -0,0 +1,20 @@
namespace Application.Domain.Entity;
public class EquSuitList
{
private System.Int32 _equId;
/// <summary>
/// 装备表Id--goods表
/// </summary>
public System.Int32 equId
{ get { return this._equId; } set { this._equId = value; } }
private System.String _equName;
/// <summary>
///
/// </summary>
public System.String equName
{ get { return this._equName; } set { this._equName = value; } }
}