1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TEmployeeinfo
- {
- public int Gid { get; set; }
- public int? Sno { get; set; }
- public string EmployNo { get; set; }
- public string EmployName { get; set; }
- public string EmployAddr { get; set; }
- public string EmployPost { get; set; }
- public string EmployCard { get; set; }
- public byte? UploadFlag { get; set; }
- }
- }
|