Mini.Crm/Mini.Model/Entity/Ww_Corp.cs

23 lines
516 B
C#

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; }
/// <summary>
/// 所属公司ID
/// </summary>
public string companycode { get; set; }
/// <summary>
/// 部门ID
/// </summary>
public string deptid { get; set; }
}
}