12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace EMIS.ViewModel.TerminatePrinter
- {
- public class PrintControlView
- {
- public Guid PrintControlID { get; set; }
- [Required]
- [DisplayName("年级")]
- public int? YearID { get; set; }
- [Required]
- [DisplayName("打印次数")]
- public int? Times { get; set; }
- }
- }
|