You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
538 B
20 lines
538 B
using NFine.Domain._03_Entity.SystemManage;
|
|
using NFine.Domain.Entity.SystemManage;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.Entity.ModelConfiguration;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NFine.Mapping.SystemManage
|
|
{
|
|
public class OrganizeByVendorMap : EntityTypeConfiguration<OrganizeByVendorEntity>
|
|
{
|
|
public OrganizeByVendorMap()
|
|
{
|
|
this.ToTable("Sys_SRM_OrganizeByVendor");
|
|
this.HasKey(t => t.F_Id);
|
|
}
|
|
}
|
|
}
|