using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Mini.Model.Entity
{
public class Ww_Corp
{
[Key]
public string corpid { get; set; }
public string corpname { get; set; }
///
/// 所属公司ID
///
public string companycode { get; set; }
///
/// 部门ID
///
public string deptid { get; set; }
}
}