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

AccountEntity.cs 770 B

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