VCompDetail.cs 782 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MeterVision.db
  7. {
  8. public class VCompDetail
  9. {
  10. // v_comp 的字段
  11. public string CompId { get; set; }
  12. public string CreateTime { get; set; }
  13. public string NPatchId { get; set; }
  14. public string OPatchId { get; set; }
  15. public string StandId { get; set; }
  16. // 与 n_patch_id 关联的 t_patch_detail 字段
  17. public TPatchDetail PatchDetail1 { get; set; }
  18. // 与 o_patch_id 关联的 t_patch_detail 字段
  19. public TPatchDetail PatchDetail2 { get; set; }
  20. public VCompDetail()
  21. {
  22. }
  23. //------------------------------------------------
  24. }
  25. }