Charge.java 586 B

1234567891011121314151617181920212223242526
  1. package com.jkcredit.invoice.model.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import io.swagger.annotations.ApiModel;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Data;
  7. /**
  8. * @description:
  9. * @author: xusonglin
  10. * @create: 2019/12/11 13:44
  11. * @version: V1.0
  12. **/
  13. @Data
  14. @ApiModel(value = "消息队列扣款列表")
  15. public class Charge {
  16. @TableId(type = IdType.AUTO)
  17. private Integer id;
  18. /**
  19. * 用户id
  20. */
  21. @ApiModelProperty(value = "用户id")
  22. private String userId;
  23. }