All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pig4cloud.pigx.common.sequence.properties.BaseSequenceProperties Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version
package com.pig4cloud.pigx.common.sequence.properties;

import lombok.Data;

/**
 * @author lengleng
 * @date 2019-05-26
 * 

* 发号器通用属性 */ @Data class BaseSequenceProperties { /** * 获取range步长[可选,默认:1000] */ private int step = 1000; /** * 序列号分配起始值[可选:默认:0] */ private long stepStart = 0; /** * 业务名称 */ private String bizName = "pigx"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy