BillRuleInfoVO.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package jnpf.base.model.billrule;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date 2021/3/12 15:30
  10. */
  11. @Data
  12. public class BillRuleInfoVO {
  13. @Schema(description = "id")
  14. private String id;
  15. @Schema(description = "业务名称")
  16. private String fullName;
  17. @Schema(description = "流水位数")
  18. private String enCode;
  19. @Schema(description = "流水前缀")
  20. private String prefix;
  21. @Schema(description = "流水日期格式")
  22. private String dateFormat;
  23. @Schema(description = "流水位数")
  24. private Integer digit;
  25. @Schema(description = "流水起始")
  26. private String startNumber;
  27. @Schema(description = "流水范例")
  28. private String example;
  29. @Schema(description = "状态(0-禁用,1-启用)")
  30. private Integer enabledMark;
  31. @Schema(description = "流水说明")
  32. private String description;
  33. @Schema(description = "排序码")
  34. private Long sortCode;
  35. @Schema(description = "业务分类")
  36. private String category;
  37. @Schema(description = "方式 1-时间格式,2-随机数编号,3-UUID")
  38. private Integer type;
  39. @Schema(description = "随机数位数")
  40. private Integer randomDigit;
  41. @Schema(description = "随机数类型")
  42. private Integer randomType;
  43. @Schema(description = "单据后缀")
  44. private String suffix;
  45. }