using System.ComponentModel.DataAnnotations; namespace RB_MES_API.Models.Cloud { public class BD_UNIT { public long FUNITID { get;set; } public string FNumber { get; set; } = string.Empty; public string FName { get;set; }=string.Empty; public string FIsBaseUnit { get; set; } /// /// 精度 /// public int FPrecision { get; set; } = 1; public string FDocumentStatus { get; set; } = string.Empty; public string FForbidStatus { get; set; } = string.Empty; /// /// 分母 /// public decimal FConvertDenominator { get; set; } /// /// 分子 /// public decimal FConvertNumerator { get; set; } /// /// 舍入类型 /// public string FRoundType { get; set; } } }