ComplianceServer/oldcode/Core.Model/Entity/Bas_CompanyChannel.cs

14 lines
344 B
C#

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; }
}
}