SysPublicParam.cs 741 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class SysPublicParam
  6. {
  7. public long PublicId { get; set; }
  8. public string PublicName { get; set; }
  9. public string PublicKey { get; set; }
  10. public string PublicValue { get; set; }
  11. public string Status { get; set; }
  12. public string ValidateCode { get; set; }
  13. public string CreateBy { get; set; }
  14. public string UpdateBy { get; set; }
  15. public DateTime CreateTime { get; set; }
  16. public DateTime? UpdateTime { get; set; }
  17. public string PublicType { get; set; }
  18. public string SystemFlag { get; set; }
  19. public string DelFlag { get; set; }
  20. }
  21. }