You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
617 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.Entity
  7. {
  8. public class EntireCodeDelModel
  9. {
  10. //单据号
  11. public string TransCode { set; get; }
  12. //单据类型
  13. public string TransType { set; get; }
  14. //操作(0:删除;1:关闭)
  15. public string OperationCode { set; get; }
  16. //操作人
  17. public string User { set; get; }
  18. //操作时间
  19. public string MTime { set; get; }
  20. //站点
  21. public string WorkPoint { set; get; }
  22. }
  23. }