feiyu02
2024-11-19 752e00503f672ddfe2066afb6c235721a3a912b5
src/main/kotlin/cn/flightfeather/supervision/domain/entity/SceneType.java
@@ -15,6 +15,12 @@
    private String scTag;
    /**
     * 排序编号
     */
    @Column(name = "SC_Index")
    private Integer scIndex;
    /**
     * @return SC_Id
     */
    public Integer getScId() {
@@ -55,4 +61,22 @@
    public void setScTag(String scTag) {
        this.scTag = scTag == null ? null : scTag.trim();
    }
    /**
     * 获取排序编号
     *
     * @return SC_Index - 排序编号
     */
    public Integer getScIndex() {
        return scIndex;
    }
    /**
     * 设置排序编号
     *
     * @param scIndex 排序编号
     */
    public void setScIndex(Integer scIndex) {
        this.scIndex = scIndex;
    }
}