12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
-
-
-
- public class Fin_RoyaltyForm:EntityBase
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public int DayOverhead { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(500)")]
- public string ConfirmIdArr { get; set; }
- }
- }
|