Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in

谢明辉 / fanxing3

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • fanxing3
  • ..
  • vo
  • LogVo.java
  • xmh's avatar
    <feat> 添加日志表 s_log,添加生成代码 · 1139fb92 ...
    <feat> VionConfig 修改,添加 sip28181 对接配置
    <feat> 视频操作添加日志
    <feat> 任务操作添加日志
    <feat> gateway 鉴权后添加 username 到 header 中
    xmh committed Nov 11, 2021
    1139fb92 Browse File
LogVo.java 284 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.viontech.fanxing.commons.vo;

import com.viontech.fanxing.commons.model.Log;
import com.viontech.fanxing.commons.vobase.LogVoBase;

public class LogVo extends LogVoBase {

    public LogVo() {
        super();
    }

    public LogVo(Log log) {
        super(log);
    }
}