16 lines
402 B
C#
16 lines
402 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Bas_CompanyWework")]
|
|
public class Bas_CompanyWework
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public string Channel { get; set; }
|
|
public string userId { get; set; }
|
|
}
|
|
}
|