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
  • ContentVo.java
  • xmh's avatar
    commons: · b1d7f0a5 ...
    1. 引入 content 表相关代码
    2. Channel 添加 brand(品牌/厂家) 和 direction(方向) 字段
    
    ops:
    1. 引入 content 表相关代码
    2. 更新 channel 表的代码
    3. <fix> VideoService.uploadVideo 上传资源文件的 path 更新为相对目录
    
    task:
    1. <feature> 新增任务时构建 scene , 并且使用默认配置
    2. <feature> 添加接口 TaskController.channelUnidWithTask 获取所有分配了任务的通道序列号
    xmh committed Sep 29, 2021
    b1d7f0a5
ContentVo.java 320 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.Content;
import com.viontech.fanxing.commons.vobase.ContentVoBase;

public class ContentVo extends ContentVoBase {

    public ContentVo() {
        super();
    }

    public ContentVo(Content content) {
        super(content);
    }
}