Commit 19ada207 by zhangxingmin

push

parent 9098e6b6
...@@ -217,4 +217,9 @@ public class ApiAppointmentInfoDto { ...@@ -217,4 +217,9 @@ public class ApiAppointmentInfoDto {
* 是否有用车服务:0-否, 1-是(字典) * 是否有用车服务:0-否, 1-是(字典)
*/ */
private Integer isUseCar; private Integer isUseCar;
/**
* 创建人用户名
*/
private String creatorName;
} }
...@@ -305,6 +305,12 @@ public class Appointment implements Serializable { ...@@ -305,6 +305,12 @@ public class Appointment implements Serializable {
private String creatorId; private String creatorId;
/** /**
* 创建人用户名
*/
@TableField("creator_name")
private String creatorName;
/**
* 更新人ID * 更新人ID
*/ */
@TableField("updater_id") @TableField("updater_id")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment