ZNBDFL.cs 575 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PMS.BusinessModels.SmartForm
  7. {
  8. public class ZNBDFL
  9. {
  10. public string ID { get; set; }
  11. public string 上级ID { get; set; }
  12. public int 序号 { get; set; }
  13. public string 名称 { get; set; }
  14. public int 应用性质 { get; set; }
  15. public string 应用范围 { get; set; }
  16. /// <summary>
  17. /// 1新增,2修改
  18. /// </summary>
  19. public int type { get; set; }
  20. }
  21. }