1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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; }
- }
- }
|