猫妈狗爸伴宠师小程序前端代码
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.

94 lines
2.1 KiB

  1. package com.ruoyi.model.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import lombok.Data;
  5. /**
  6. * 订单信息表对象 applet_order_item_date_log
  7. *
  8. * @author daixiande
  9. */
  10. @Data
  11. public class AppletOrderItemDateLog {
  12. private static final long serialVersionUID = 1L;
  13. /** 唯一标识 */
  14. private Long id;
  15. /** 创建时间 */
  16. private String createTime;
  17. /** 创建者 */
  18. private Integer createBy;
  19. /** 修改时间 */
  20. private String updateTime;
  21. /** 修改者 */
  22. private Integer updateBy;
  23. /** 手套照片 */
  24. @Excel(name = "手套照片")
  25. private String glovePhoto;
  26. /** 鞋套照片 */
  27. @Excel(name = "鞋套照片")
  28. private String shoeCoverPhoto;
  29. /** 宠物照片 */
  30. @Excel(name = "宠物照片")
  31. private String petPhoto;
  32. /** 伴宠师照片 */
  33. @Excel(name = "伴宠师照片")
  34. private String teacherPhoto;
  35. /** 粮碗前后对比-前 */
  36. @Excel(name = "粮碗前后对比-前")
  37. private String grainBowlFront;
  38. /** 粮碗前后对比-后 */
  39. @Excel(name = "粮碗前后对比-后")
  40. private String grainBowlAfter;
  41. /** 水碗前后对比-前 */
  42. @Excel(name = "水碗前后对比-前")
  43. private String waterBowlFront;
  44. /** 水碗前后对比-后 */
  45. @Excel(name = "水碗前后对比-后")
  46. private String waterBowlAfter;
  47. /** 盆/尿垫前后对比-前 */
  48. @Excel(name = "盆/尿垫前后对比-前")
  49. private String basinFront;
  50. /** 盆/尿垫前后对比-后 */
  51. @Excel(name = "盆/尿垫前后对比-后")
  52. private String basinAfter;
  53. /** 溜狗 */
  54. @Excel(name = "溜狗")
  55. private String workDogImage;
  56. /** 陪玩 */
  57. @Excel(name = "陪玩")
  58. private String workPalyImage;
  59. /** 备注 */
  60. @Excel(name = "备注")
  61. private String notes;
  62. /** 日订单标识 */
  63. @Excel(name = "日订单标识")
  64. private Long itemDateId;
  65. /** 总订单标识 */
  66. @Excel(name = "总订单标识")
  67. private Long itemOrderId;
  68. /** 订单标识 */
  69. @Excel(name = "订单标识")
  70. private Long orderId;
  71. }