PrintControlView.cs 496 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. using System.ComponentModel.DataAnnotations;
  7. namespace EMIS.ViewModel.TerminatePrinter
  8. {
  9. public class PrintControlView
  10. {
  11. public Guid PrintControlID { get; set; }
  12. [Required]
  13. [DisplayName("年级")]
  14. public int? YearID { get; set; }
  15. [Required]
  16. [DisplayName("打印次数")]
  17. public int? Times { get; set; }
  18. }
  19. }