EmployeeUpdateInput.cs 388 B

12345678910111213141516171819
  1. 
  2. namespace Admin.Core.Service.Personnel.Employee.Input
  3. {
  4. /// <summary>
  5. /// 修改
  6. /// </summary>
  7. public class EmployeeUpdateInput: EmployeeAddInput
  8. {
  9. /// <summary>
  10. /// 编号
  11. /// </summary>
  12. public long Id { get; set; }
  13. /// <summary>
  14. /// 版本
  15. /// </summary>
  16. public long Version { get; set; }
  17. }
  18. }