音视频样例配置审核流程(配置下发,配置取消)完善

This commit is contained in:
zhangwei
2018-05-21 11:22:51 +08:00
parent 0abeb3a901
commit 5643a8243f
12 changed files with 733 additions and 58 deletions

View File

@@ -11,6 +11,9 @@ package com.nis.domain.configuration;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.nis.domain.BaseEntity;
/**
@@ -54,6 +57,7 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
/**
* 有效标识
*/
@Expose
protected Integer isValid;
/**
* 是否审核
@@ -94,10 +98,14 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
/**
* 审核时间
*/
@Expose
@SerializedName("opTime")
protected Date auditTime;
/**
* 业务id
*/
@Expose
@SerializedName("service")
protected Integer serviceId;
/**
* 来函id
@@ -332,7 +340,7 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
* auditTime
* @return auditTime
*/
@JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
public Date getAuditTime() {
return auditTime;
}