crm.core/code/Crm.Core.Domain/Dto/CRM/SpecialRihgtDto.cs

25 lines
749 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Domain.Dto.CRM
{
public class SpecialRihgtDto
{
// a.inneruserid,b.code,b.roleid,a.inneruserid,c.eid,c.uname,d.rightid,d.rname,d.remarks,e.typeid,e.cid
public decimal inneruserid { get; set; }
public string code { get; set; }
public decimal roleid { get; set; }
public decimal eid { get; set; }
public string uname { get; set; }
public string rightid { get; set; }
public string rname { get; set; }
public string remarks { get; set; }
public decimal typeid { get; set; }
public decimal cid { get; set; }
}
}