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

com.nbsaas.boot.system.api.domain.response.DictItemResponse Maven / Gradle / Ivy

There is a newer version: 1.1.5-2024
Show newest version
package com.nbsaas.boot.system.api.domain.response;

import lombok.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
            import com.nbsaas.boot.rest.enums.StoreState;
/**
* 响应对象
*/
@Getter
@Setter
@ToString(callSuper = true)
public class DictItemResponse  implements Serializable {
/**
* 序列化参数
*/
private static final long serialVersionUID = 1L;


        /**
        * 
        **/
            private String dictTitle;

        /**
        * 键值
        **/
            private String dataValue;

        /**
        * 
        **/
            private Long dict;

        /**
        * 排序字段
        **/
            private Integer sortNum;

        /**
        * 
        **/
            //枚举
            private StoreState storeState;

            private String storeStateName;

        /**
        * 主键id
        **/
            private Long id;

        /**
        * 编码
        **/
            private String dataCode;

        /**
        * 添加时间
        **/
            private Date addDate;

        /**
        * 最新修改时间
        **/
            private Date lastDate;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy