123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
-
-
-
-
- [SugarTable("Fin_GroupExtraCost")]
- public class Fin_GroupExtraCost : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? PriceName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal Price { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PriceCount { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(14,2)")]
- public decimal PriceSum { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "创建时间", IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime PriceDt { get; set; } = DateTime.Now;
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PriceCurrency { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PriceType { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal Coefficient { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PriceDetailType{ get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string? FilePath { get; set; }
-
-
-
- public int? Area { get; set; }
-
-
-
- public int? ManagerConfirm { get; set; }
-
-
-
- public int? SupervisorConfirm { get; set; }
-
-
-
- public int? SYsupervisorConfirm { get; set; }
- }
- }
|