fx_user_dwlayout.cs 566 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LJLib.DAL.SQL;
  6. namespace JLHHJSvr.DBA.DBModle
  7. {
  8. [PK(new[] { "userid,dwname" })]
  9. public sealed class fx_user_dwlayout
  10. {
  11. public int userid { get; set; }
  12. public string dwname { get; set; }
  13. public string column_visible { get; set; }
  14. public string column_width { get; set; }
  15. public string column_x { get; set; }
  16. public int column_autosize { get; set; }
  17. public int column_detail_height { get; set; }
  18. }
  19. }