12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
-
-
-
- public class Fin_RoyaltyConfirm:EntityBase
- {
-
-
-
- public decimal Price { get; set; }
-
-
-
- public string TeamName { get; set; }
-
-
-
- public int TeamId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(1000)")]
- public string ChiArr { get; set; }
-
-
-
-
- public string? TeamLvStr { get; set; }
-
-
-
- public DateTime VisitDate { get; set; }
-
-
-
-
- public string Temp { get; set; }
-
-
-
- public int IsConfirm { get; set; }
-
-
-
-
- public int UserId { get; set; }
-
-
-
- public int IsSeed { get; set; }
- }
- }
|