You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
560 B
C#

2 months ago
using System;
using System.Collections.Generic;
namespace TradeModel
{
public class JC_DepartMent
{
public Int32? DeptId{ get; set; }
public String DeptCode{ get; set; }
public String DeptType { get; set; }
public String DeptName{ get; set; }
public Int32? ParentDeptId{ get; set; }
public String Phone{ get; set; }
public String Fax{ get; set; }
public String SortNo { get; set; }
public Int32? CompanyId{ get; set; }
public String MasterName { get; set; }
}
}