UserMoveInfo.cs 313 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.PxcModels
  4. {
  5. public partial class UserMoveInfo
  6. {
  7. public int UserId { get; set; }
  8. public string PayPwd { get; set; }
  9. public string LoginPwd { get; set; }
  10. public DateTime? UpdateTime { get; set; }
  11. }
  12. }