123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
-
-
-
- public class DecreasePaymentsView
- {
- public int Id { get; set; }
-
-
-
- public int DiId { get; set; }
-
-
-
- public string PriceName { get; set; }
-
-
-
- public decimal Price { get; set; }
-
-
-
- public string Currency { get; set; }
-
-
-
- public string FilePath { get; set; }
- public string CreateUserName { get; set; }
- public DateTime CreateTime { get; set; }
- public int isAudit { get; set; }
- public int IsPay { get; set; }
- }
- }
|