集成,总结MES功能
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.
 
 
 
 

30 lines
770 B

  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 名 称 :账户信息
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 : 2023/1/3 10:18:43
  7. /// 描 述 :
  8. /// </summary>
  9. [SugarTable("sys_account")]
  10. public class AccountEntity : DEntityBase
  11. {
  12. /// <summary>
  13. /// 账号
  14. /// </summary>
  15. [SugarColumn(IsNullable = false)]
  16. public string Account { get; set; }
  17. /// <summary>
  18. /// 密码
  19. /// </summary>
  20. [SugarColumn(IsNullable = false)]
  21. public string Pwd { get; set; }
  22. /// <summary>
  23. /// 员工表Id
  24. /// </summary>
  25. [SugarColumn(IsNullable = false)]
  26. public string EmployeeId { get; set; }
  27. }
  28. }