TEmployeeinfo.cs 506 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TEmployeeinfo
  6. {
  7. public int Gid { get; set; }
  8. public int? Sno { get; set; }
  9. public string EmployNo { get; set; }
  10. public string EmployName { get; set; }
  11. public string EmployAddr { get; set; }
  12. public string EmployPost { get; set; }
  13. public string EmployCard { get; set; }
  14. public byte? UploadFlag { get; set; }
  15. }
  16. }