|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public class Bas_CompanyChannel
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string CompanyCode { get; set; }
|
|
public int Min { get; set; }
|
|
public int Max { get; set; }
|
|
public int Defult { get; set; }
|
|
}
|
|
} |