ProcurementForecast.cs 609 B

1234567891011121314151617181920212223242526272829
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Business.ResourceExamineManagement.Dto
  8. {
  9. [Keyless]
  10. public class ProcurementForecast
  11. {
  12. public string wlh { get; set; }
  13. public string wlmc { get; set; }
  14. public string wlgg { get; set; }
  15. public string gysdm { get; set; }
  16. public string gysmc { get; set; }
  17. public string jbdw { get; set; }
  18. public decimal? sl { get; set; }
  19. public string cgyf { get; set; }
  20. }
  21. }