st_user_power.cs 312 B

123456789101112131415
  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,funid" })]
  9. public sealed class st_user_power
  10. {
  11. public int? userid { get; set; }
  12. public int? funid { get; set; }
  13. }
  14. }