1234567891011121314151617181920212223242526 |
- package com.jkcredit.invoice.model.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @description:
- * @author: xusonglin
- * @create: 2019/12/11 13:44
- * @version: V1.0
- **/
- @Data
- @ApiModel(value = "消息队列扣款列表")
- public class Charge {
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 用户id
- */
- @ApiModelProperty(value = "用户id")
- private String userId;
- }
|