23 lines
560 B
C#
23 lines
560 B
C#
namespace WX.CRM.Model.Ww
|
|
{
|
|
public class Ww_Corp
|
|
{
|
|
public string corpid { get; set; }
|
|
public string corpname { get; set; }
|
|
/// <summary>
|
|
/// 所属公司ID
|
|
/// </summary>
|
|
public string companycode { get; set; }
|
|
/// <summary>
|
|
/// 部门ID
|
|
/// </summary>
|
|
public string deptid { get; set; }
|
|
}
|
|
public class Ww_CorpSelectItem
|
|
{
|
|
public string name { get; set; }
|
|
public string value { get; set; }
|
|
public bool selected { get; set; }
|
|
}
|
|
}
|