1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
-
-
-
-
- [SugarTable("Fin_OtherPrice")]
- public class Fin_OtherPrice:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int Diid { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "varchar(100)")]
- public string? PriceName { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
- public decimal Price { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CurrencyId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,4)")]
- public decimal DayRate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PayType { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int RefundType { get; set; }
- }
- }
|