年度变更建库软件5.0版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
735 B

4 months ago
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kingo.PluginServiceInterface.Model
{
public class GDEntity
{
public string GDLX { get; set; }
public string GDPDJB { get; set; }
public string GDPDJBMC { get; set; }
private decimal _kcdlxs;
[Range(typeof(Decimal), "0", "1"), DataType(DataType.Currency)]
public decimal KCDLXS
{
get
{
return Math.Round(_kcdlxs, 4, MidpointRounding.AwayFromZero);
}
set
{
_kcdlxs = value;
}
}
}
}