切换mysql为达梦数据库-代码审查
1.systemboot模块
This commit is contained in:
@@ -15,6 +15,5 @@ public interface DicDataConstant {
|
||||
|
||||
|
||||
String NAME_KEY = "DicCache:";
|
||||
String SPLIT_SIGN = "-";
|
||||
|
||||
}
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
package com.njcn.system.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
*
|
||||
* @author cdf
|
||||
* @date 2022/1/26
|
||||
*/
|
||||
@Data
|
||||
@ApiModel
|
||||
public class MxGraphParam {
|
||||
|
||||
@ApiModelProperty(name = "title",value = "组态标题",required = true)
|
||||
@NotBlank(message = "组态标题不可为空")
|
||||
private String title;
|
||||
|
||||
@ApiModelProperty(name = "mxContent",value = "组态内容",required = true)
|
||||
@NotBlank(message = "内容不可为空")
|
||||
private String mxContent;
|
||||
|
||||
@ApiModelProperty(name = "bgImage",value = "组态背景图")
|
||||
private String bgImage;
|
||||
|
||||
@ApiModelProperty(name = "sort",value = "排序",required = true)
|
||||
@NotNull(message = "排序不可为空")
|
||||
private Integer sort;
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
package com.njcn.system.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
* 组态表
|
||||
* @author cdf
|
||||
* @date 2022/1/26
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("sys_mxgraph")
|
||||
public class MxGraph extends BaseEntity {
|
||||
private String id;
|
||||
|
||||
private String title;
|
||||
|
||||
private String mxContent;
|
||||
|
||||
private String bgImage;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Integer state;
|
||||
}
|
||||
Reference in New Issue
Block a user