1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using LJLib.DAL.SQL;
- namespace JLHHJSvr.DBA.DBModle
- {
- [PK(new[] { "userid,dwname" })]
- public sealed class fx_user_dwlayout
- {
- public int userid { get; set; }
- public string dwname { get; set; }
- public string column_visible { get; set; }
- public string column_width { get; set; }
- public string column_x { get; set; }
- public int column_autosize { get; set; }
- public int column_detail_height { get; set; }
- }
- }
|