| | |
| | | package com.vci.ubcs.omd.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | |
| | | * 属性类型字典显示名称 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String typeValue; |
| | | |
| | | |
| | |
| | | * 参照类型字典显示名称 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String referTypeValue; |
| | | |
| | | /** |
| | |
| | | * 字典显示值 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String dictValue; |
| | | |
| | | /** |
| | |
| | | * 比较方式 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String calculateType; |
| | | |
| | | /** |
| | | * 比较值 |
| | | */ |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String calculateValue; |
| | | } |