1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
- public class Fin_LocalGuideRelevancyOverspend:EntityBase
- {
- public int LocalGuideId { get; set; }
- public int OverspendId { get; set; }
- }
- public class Fin_OverSpendRelevancyCollectionStatement : EntityBase
- {
-
-
-
- public int OverSpendId { get; set; }
-
-
-
- public int CollectionStatementId { get; set; }
- public int Diid { get; set; }
-
-
-
- public int LocalGuideId { get; set; }
- public decimal savePrice { get; set; }
- }
- }
|