PurchasePriceParam.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright [2022] [https://www.baiduc.com]
  3. *
  4. * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
  5. *
  6. * 1.请不要删除和修改根目录下的LICENSE文件。
  7. * 2.请不要删除和修改Snowy源码头部的版权声明。
  8. * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
  9. * 4.分发源码时候,请注明软件出处 https://www.baiduc.com
  10. * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
  11. * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.baiduc.com
  12. */
  13. package vip.xiaonuo.purchase.param;
  14. import io.swagger.annotations.ApiModelProperty;
  15. import lombok.Getter;
  16. import lombok.Setter;
  17. /**
  18. * 人员明细Id参数
  19. *
  20. * @author 余
  21. * @date 2024/11/14 15:02
  22. **/
  23. @Getter
  24. @Setter
  25. public class PurchasePriceParam {
  26. @ApiModelProperty(value = "orgId", required = true)
  27. private String orgId;
  28. @ApiModelProperty(value = "时间类型 0为本年 1为本月", required = true)
  29. private Integer timeType;
  30. @ApiModelProperty(value = "产品名称", required = true)
  31. private String material;
  32. @ApiModelProperty(value = "月份数或年数", required = true)
  33. private Integer number;
  34. }