TblEquipmentOrganizationalVo.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.data.domain.vo;
  2. import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
  3. import com.alibaba.excel.annotation.ExcelProperty;
  4. import com.ruoyi.common.annotation.ExcelDictFormat;
  5. import com.ruoyi.common.convert.ExcelDictConvert;
  6. import lombok.Data;
  7. import java.util.Date;
  8. import java.io.Serializable;
  9. /**
  10. * 设备组织机构视图对象 tbl_equipment_organizational
  11. *
  12. * @author ruoyi
  13. * @date 2023-12-05
  14. */
  15. @Data
  16. @ExcelIgnoreUnannotated
  17. public class TblEquipmentOrganizationalVo implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. *
  21. */
  22. @ExcelProperty(value = "")
  23. private Long id;
  24. /**
  25. * 区域编码
  26. */
  27. @ExcelProperty(value = "区域编码")
  28. private String sn;
  29. /**
  30. * 上层位置
  31. */
  32. @ExcelProperty(value = "上层位置")
  33. private Long parentId;
  34. /**
  35. * 区域名称
  36. */
  37. @ExcelProperty(value = "区域名称")
  38. private String name;
  39. /**
  40. * 所属公司
  41. */
  42. @ExcelProperty(value = "所属公司")
  43. private String company;
  44. /**
  45. * 备注
  46. */
  47. @ExcelProperty(value = "备注")
  48. private String remark;
  49. }