23 lines
483 B
C#
23 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
public class Ww_Dept_Corp
|
|
{
|
|
public string corpid { get; set; }
|
|
public string id { get; set; }
|
|
}
|
|
public class Ww_Dept_CorpInt
|
|
{
|
|
public string corpid { get; set; }
|
|
public int id { get; set; }
|
|
}
|
|
public class Ww_Dept_CorpIntNull
|
|
{
|
|
public string corpid { get; set; }
|
|
public int? id { get; set; }
|
|
}
|
|
}
|