22 lines
558 B
C#
22 lines
558 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.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; }
|
|
}
|
|
}
|