1111
This commit is contained in:
36
Service/Application.Domain.Entity/model/AttrItem.cs
Normal file
36
Service/Application.Domain.Entity/model/AttrItem.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class AttrItem
|
||||
{
|
||||
private System.String _code;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String code
|
||||
{ get { return this._code; } set { this._code = value; } }
|
||||
|
||||
private System.String _compute;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String compute
|
||||
{ get { return this._compute; } set { this._compute = value; } }
|
||||
|
||||
private System.Decimal _parameter;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Decimal parameter
|
||||
{ get { return this._parameter; } set { this._parameter = value; } }
|
||||
|
||||
private System.String _tip;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String tip
|
||||
{ get { return this._tip; } set { this._tip = value; } }
|
||||
}
|
||||
Reference in New Issue
Block a user