using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
public class Rotation
{
///
/// 编号
///
public int id { get; set; }
///
/// 图片名称
///
public string roname { get; set; }
///
/// 路径
///
public string romath { get; set; }
///
/// 操作人
///
public string uploadpeo { get; set; }
///
/// 操作时间
///
public DateTime uploaddate { get; set; }
///
/// 是否启用
///
public int isEnable { get; set; }
}
}