using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
public class RoleListItem
|
{
|
public string status { get; set; }
|
public string id { get; set; }
|
public string roleName { get; set; }
|
public string roleValue { get; set; }
|
public string func_type { get; set; }
|
public string orderNo { get; set; }
|
public string createTime { get; set; }
|
}
|
|
public class SaveRoleParams
|
{
|
public string ID { get; set; }
|
public string ROLE_DESC { get; set; }
|
public string ROLE_CODE { get; set; }
|
public string IS_ACTIVE { get; set; }
|
public List<string> menu { get; set; }
|
public bool isUpdate { get; set; }
|
}
|
|
public class SaveRoleStrictlyParams
|
{
|
public string ID { get; set; }
|
public string ROLE_DESC { get; set; }
|
public string ROLE_CODE { get; set; }
|
public string IS_ACTIVE { get; set; }
|
public checkedMenu menu { get; set; }
|
public checkedMenu org { get; set; }
|
public checkedMenu wh { get; set; }
|
public bool isUpdate { get; set; }
|
}
|
|
public class checkedMenu
|
{
|
public List<string> Checked { get; set; }
|
public List<string> halfChecked { get; set; }
|
}
|
}
|