OEquip.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package com.persagy.bdtp.adm.entity.oldadm;
  2. import com.fasterxml.jackson.annotation.JsonAlias;
  3. import com.fasterxml.jackson.annotation.JsonProperty;
  4. import com.fasterxml.jackson.databind.node.ObjectNode;
  5. import lombok.Data;
  6. import java.util.List;
  7. import java.util.Map;
  8. @Data
  9. public class OEquip extends OBase {
  10. /** 二维码内容 */
  11. private String defaultQRCode;
  12. /** 设计图纸中编码 */
  13. private String cadId;
  14. /** RFID标识 */
  15. private String rfId;
  16. /** BIM模型中编码 */
  17. private String bimId;
  18. /** BIM构建编码 */
  19. private String bimTypeId;
  20. /** BIM模型中坐标 */
  21. private String bimLocation;
  22. /** 坐标对象数据 */
  23. @JsonProperty("location")
  24. @JsonAlias("locationJson")
  25. private Map<String, Double> location;
  26. /** 现场发现人员 */
  27. private String findPeople;
  28. /** 项目ID */
  29. private String projectId;
  30. /** 设备类型code */
  31. private String classCode;
  32. /** 设备所在建筑ID */
  33. private String buildingId;
  34. /** 设备所在楼层id */
  35. private String floorId;
  36. /** 设备关联的资产id */
  37. private String propertyId;
  38. /** 参见 EquipmentProSy **/
  39. /** 品牌型号id */
  40. private String dpManufacturerId;
  41. /** 供应商信息id */
  42. private String dpSupplierId;
  43. /** 维修商信息id */
  44. private String dpMaintainerId;
  45. /** 保险公司信息id */
  46. private String dpInsurerId;
  47. /** 设备型号id */
  48. private String dpSpecificationId;
  49. /** 品牌id */
  50. private String dpBrandId;
  51. /** Revit族 */
  52. private String bimFamilyName;
  53. /** Revit族类型 */
  54. private String bimFamilySymbol;
  55. /** 设备序号 */
  56. private Double equipSerial;
  57. /** 部件关联设备的id */
  58. private String parentId;
  59. /** 系统id集合 */
  60. private List<String> systemList;
  61. /** 项目自定义类型 */
  62. private String customCategory;
  63. /** 任务状态 */
  64. private Integer taskState;
  65. /** 模型id */
  66. private String modelId;
  67. /** 贴码状态 */
  68. private Integer codeType;
  69. /** 备注 */
  70. private String note;
  71. /** 客户端id */
  72. private String appId;
  73. /** 方案id */
  74. private String schemeId;
  75. /** 系统编码 */
  76. private String systemCode;
  77. /** 系统名称 */
  78. private String systemName;
  79. /** 二维码图片 */
  80. private String qrcodePic;
  81. }