22 lines
624 B
C#
22 lines
624 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Bas_Budget")]
|
|
public class Bas_Budget
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public string Channel { get; set; }
|
|
public int ProductId { get; set; }
|
|
public int Budget { get; set; }
|
|
public int Sort { get; set; }
|
|
public int IsDelete { get; set; }
|
|
public int Type { get; set; }
|
|
public int Year { get; set; }
|
|
public int? Month { get; set; }
|
|
}
|
|
}
|