rf_userDto.cs 508 B

1234567891011121314151617181920212223
  1. using Business.Core.Attributes;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. namespace Business.StructuredDB.MES
  7. {
  8. /// <summary>
  9. /// 人员列表
  10. /// </summary>
  11. [Comment("人员列表")]
  12. [Keyless]
  13. public class rf_userDto
  14. {
  15. /// <summary>
  16. /// 密码
  17. /// </summary>
  18. [Comment("密码")]
  19. public string TimePassword { get; set; }
  20. }
  21. }