package com.mzl.flower.entity.system;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.mzl.flower.base.BaseEntity;
|
import lombok.Data;
|
|
@Data
|
@TableName("t_code_value")
|
public class CodeValue extends BaseEntity {
|
|
@TableField("TYPE_CODE")
|
private String typeCode;
|
|
@TableField("VALUE")
|
private String value;
|
|
@TableField("LABEL")
|
private String label;
|
|
@TableField("DESCRIPTION")
|
private String description;
|
|
@TableField("SEQ")
|
private Integer seq;
|
|
}
|