init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Zhaizj.Framework.ORM {
/// <summary>
/// 用于自定义精度数据,也可以存储自定义精度的货币数值。
/// </summary>
[Serializable, AttributeUsage( AttributeTargets.Property )]
public class DecimalAttribute : Attribute {
/// <summary>
/// 数值的精度,即小数点左右的总共位数,但不包括小数点。
/// </summary>
public int Precision { get; set; }
/// <summary>
/// 小数点右侧的位数
/// </summary>
public int Scale { get; set; }
}
}