2023年4月24日 新增字段

This commit is contained in:
bai 2023-04-24 17:24:28 +08:00
parent 741bba9c57
commit 5ad27b8184
1 changed files with 46 additions and 1 deletions

View File

@ -36,6 +36,39 @@ public class KcZhihuijiaoshi implements Serializable {
@TableId(type = IdType.ASSIGN_ID)
@ApiModelProperty(value = "id")
private java.lang.Integer id;
/**
* 创建人
*/
@ApiModelProperty(value = "创建人")
@Excel(name = "创建人", width = 15)
private java.lang.String createBy;
/**
* 创建时间
*/
@ApiModelProperty(value = "创建时间")
@Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private java.util.Date createTime;
/**
* 更新人
*/
@ApiModelProperty(value = "更新人")
@Excel(name = "更新人", width = 15)
private java.lang.String updateBy;
/**
* 更新时间
*/
@ApiModelProperty(value = "更新时间")
@Excel(name = "更新时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private java.util.Date updateTime;
/**校区*/
@Excel(name = "校区", width = 15)
@ApiModelProperty(value = "校区")
@ -56,6 +89,18 @@ public class KcZhihuijiaoshi implements Serializable {
@Excel(name = "新ip", width = 15)
@ApiModelProperty(value = "新ip")
private java.lang.String ip;
/**推流地址rtmp*/
@Excel(name = "推流地址rtmp", width = 15)
@ApiModelProperty(value = "推流地址rtmp")
private String pushUrl;
/**播放地址http*/
@Excel(name = "播放地址http", width = 15)
@ApiModelProperty(value = "播放地址http")
private String pullUrl;
/**账号*/
@Excel(name = "账号", width = 15)
@ApiModelProperty(value = "账号")