18 lines
494 B
C#
18 lines
494 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public class Bas_CompanyVirtual
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public string CompanyCode { get; set; }
|
|
public string Channel { get; set; }
|
|
public int Sort { get; set; }
|
|
public int IsDelete { get; set; }
|
|
public string deptcode { get; set; }
|
|
public int isoutcompany { get; set; }
|
|
}
|
|
}
|