package com.nuvole.four.domain.dto;
|
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* @Desc: 机构通道配置列表信息
|
* @Author: dqh
|
* @Date: 2024-04-11
|
**/
|
@Api(value = "机构通道配置列表信息", tags = "机构通道配置列表信息")
|
@Data
|
public class ChannelOrgConfigDto {
|
|
@ApiModelProperty(value = "机构ID")
|
private String orgId;
|
|
@ApiModelProperty(value = "机构名称")
|
private String orgName;
|
|
@ApiModelProperty(value = "机构code")
|
private String orgCode;
|
|
@ApiModelProperty(value = "配置通道个数")
|
private Integer configCount;
|
|
@ApiModelProperty(value = "修改时间")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date updateTime;
|
}
|