Digital Office Automation System Backend
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.

ZsOperationWarnresult.java 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.ruoyi.system.domain;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import java.util.Date;
  5. import java.math.BigDecimal;
  6. /**
  7. * 预警结果对象 zs_operation_warnresult
  8. *
  9. * @author 王强
  10. * @date 2025-05-12
  11. */
  12. @Data
  13. @TableName("zs_operation_warnresult")
  14. public class ZsOperationWarnresult {
  15. private static final long serialVersionUID=1L;
  16. /**
  17. * 主键ID
  18. */
  19. @TableId(value = "id")
  20. private Long id;
  21. /**
  22. * 预警时间
  23. */
  24. private Date warnTime;
  25. /**
  26. * 商品名字
  27. */
  28. private String goodsSkuName;
  29. /**
  30. * 商品编号
  31. */
  32. private String goodsSkuSn;
  33. /**
  34. * 基准价格
  35. */
  36. private BigDecimal initPrice;
  37. /**
  38. * 当前价格
  39. */
  40. private BigDecimal curPrice;
  41. /**
  42. * 价格变动幅度
  43. */
  44. private String priceChangeRatio;
  45. /**
  46. * 预警方式
  47. */
  48. private String warnTypes;
  49. /**
  50. * 通知内容/结果
  51. */
  52. private String warnContent;
  53. /**
  54. * 处理状态
  55. */
  56. private Integer status;
  57. /**
  58. * 图片快照
  59. */
  60. private String snapshotUrl;
  61. }