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

kim.sesame.framework.serial.entity.SerialNumberRuleEntity Maven / Gradle / Ivy

There is a newer version: 1.21
Show newest version
package kim.sesame.framework.serial.entity;

import kim.sesame.framework.entity.BaseEntity;
import lombok.Data;

import java.util.Date;

/**
 * 序列号实体
 **/
@Data
public class SerialNumberRuleEntity extends BaseEntity {
    /**编码*/
    private String code;
    /**名称*/
    private String name;
    /**当前日期*/
    private Date curTime;
    /**当前值*/
    private Long curNum;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy