Batch.java 735 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.jkcredit.invoice.model.entity;
  2. import com.jkcredit.invoice.common.BaseEntity;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import java.io.Serializable;
  7. /**
  8. * @description:
  9. * @author: sunzhaoning
  10. * @create: 2019-05-30 11:46
  11. * @version: V1.0
  12. **/
  13. @Data
  14. @ApiModel(value = "批次实体")
  15. public class Batch extends BaseEntity implements Serializable {
  16. private static final long serialVersionUID = 4114952449282051115L;
  17. private String id;
  18. /**
  19. * 批次号
  20. */
  21. @ApiModelProperty(value = "批次号")
  22. private String batchNumber;
  23. /**
  24. * 类型
  25. */
  26. @ApiModelProperty(value = "类型")
  27. private Integer type;
  28. }