34 lines
739 B
C#
34 lines
739 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityFB
|
|
{
|
|
public class bas_salesdepartment
|
|
{
|
|
[Key]
|
|
public decimal saledeptid { get; set; }
|
|
|
|
public decimal? companyid { get; set; }
|
|
|
|
public string saledeptcode { get; set; }
|
|
|
|
public string deptname { get; set; }
|
|
|
|
public string address { get; set; }
|
|
|
|
public string linkname { get; set; }
|
|
|
|
public string areacode { get; set; }
|
|
|
|
public string phone { get; set; }
|
|
|
|
public DateTime? creationdate { get; set; }
|
|
|
|
public decimal? creationby { get; set; }
|
|
|
|
public DateTime? updatedate { get; set; }
|
|
|
|
public decimal? updateby { get; set; }
|
|
}
|
|
}
|