23 lines
485 B
C#
23 lines
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("deptmentgroup")]
|
|
public class DeptmentGroup
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[Column("groupname")]
|
|
public string? GroupName { get; set; }
|
|
|
|
[Column("crmappid")]
|
|
public string? CrmAppid { get; set; }
|
|
|
|
public virtual List<Deptment>? Deptments { get; set; }
|
|
}
|
|
}
|