Commit 83c88fc6 authored by tangwei's avatar tangwei

添加字段

parent d5999b18
...@@ -104,6 +104,24 @@ public class Car extends BaseEntity { ...@@ -104,6 +104,24 @@ public class Car extends BaseEntity {
@ApiModelProperty(value = "队伍名称(冗余字段来源于平台)") @ApiModelProperty(value = "队伍名称(冗余字段来源于平台)")
private String teamName; private String teamName;
//新加
@ApiModelProperty(value = "机构/部门名称")
@TableField("biz_org_name")
private String bizOrgName;
@ApiModelProperty(value = "机构编码")
@TableField("biz_org_code")
private String bizOrgCode;
@ApiModelProperty(value = "图片") @ApiModelProperty(value = "图片")
@TableField(exist = false) @TableField(exist = false)
private List<UploadFile> img; private List<UploadFile> img;
......
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