20 lines
450 B
C#
20 lines
450 B
C#
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; } }
|
|
} |