You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
678 B

3 years ago
  1. using System;
  2. namespace Aborlen.Model
  3. {
  4. /// <summary>
  5. /// 数据表实体类:Print_YearCode
  6. /// </summary>
  7. [Serializable()]
  8. public class Print_YearCode :BasicEntity<Print_YearCode>
  9. {
  10. //当前代码为系统自动生成
  11. /// <summary>
  12. /// String:
  13. /// </summary>
  14. public String Year {get;set;}
  15. /// <summary>
  16. /// String:
  17. /// </summary>
  18. public String YearCode {get;set;}
  19. }
  20. }