想用小数(8,4)声明一个小数属性。但是 C# 的默认值是十进制(18,2)。
public class GroupItems
{
public GroupItems()
{
}
public string ItemCode { get; set; }
public string ItemDesc { get; set; }
public decimal ItemPrice { get; set; }
public decimal ItemAmount { get; set; }
public double ItemQty { get; set; }
}