using System;
using System.Collections.Generic;
using System.Text;
namespace CZFW.Framework.Model.ViewModel
{
public class CustomerUserPrivilegeModel:ModelBase
{
public int EntId { get; set; }
public int UserId { get; set; }
///
/// DataLevelEnum值
///
public int DataLevel { get; set; }
///
/// 数据的Id项, 在表中的Id
///
public int DataId { get; set; }
///
/// 数据在远程端对应的entcode下的Id,对应org_id, device_id,point_id等。
///
public int OriginalId { get; set; }
}
}