Commit 6b17f978 authored by tianbo's avatar tianbo

fix(amos-boot-module-ys): 验收应急预案增加发布字段

parent 17a3e9d5
......@@ -18,7 +18,7 @@ import java.util.Date;
*/
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(value="YsEmergencyPlanDto", description="应急预案管理")
@ApiModel(value = "YsEmergencyPlanDto", description = "应急预案管理")
public class YsEmergencyPlanDto extends BaseDto {
private static final long serialVersionUID = 1L;
......@@ -58,4 +58,6 @@ public class YsEmergencyPlanDto extends BaseDto {
@ApiModelProperty(value = "创建人")
private String createUserName;
@ApiModelProperty(value = "发布状态")
private String publish;
}
......@@ -89,4 +89,9 @@ public class YsEmergencyPlan extends BaseEntity {
@TableField("create_user_name")
private String createUserName;
/**
* 发布状态
*/
@TableField("publish")
private String publish;
}
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