using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Models.Cosmos.BI
{
public class BatchCopyFile
{
///
/// 发送醍摩豆ID
///
public string tmdid { get; set; }
///
/// 发送则名称
///
public string tmdName { get; set; }
///
/// 分区键
///
public string codeKey { get; set; }
///
/// 发送消息给醍摩豆ID集合
///
public List tmdIds { get; set; }
///
/// Blob容器
///
public string blobCntr { get; set; }
///
/// 旧文件夹名称
///
public string oldFileName { get; set; }
///
/// 新文件夹名称
///
public string newFileName { get; set; }
}
}