fix(health-emergency):修正数据库字段映射大小写问题
修改TblQimoNotice实体类中的@TableField注解, 将beginTime和endTime字段名统一改为大写BEGIN_TIME和END_TIME,以匹配数据库实际字段命名规范。
This commit is contained in:
+2
-2
@@ -82,14 +82,14 @@ public class TblQimoNotice implements Serializable {
|
||||
*/
|
||||
@Schema(title = "通话接通时间", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
||||
@Excel(name = "通话接通时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
|
||||
@TableField("beginTime")
|
||||
@TableField("BEGIN_TIME")
|
||||
private java.util.Date begin;
|
||||
/**
|
||||
* 通话结束时间
|
||||
*/
|
||||
@Schema(title = "通话结束时间", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
||||
@Excel(name = "通话结束时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
|
||||
@TableField("endTime")
|
||||
@TableField("END_TIME")
|
||||
private java.util.Date end;
|
||||
/**
|
||||
* 来电进入技能组时间
|
||||
|
||||
Reference in New Issue
Block a user