using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace New_College.Model.Models
{
///
/// 销售分销表
///
public class D_FansDistribution : EntityModel
{
///
/// 客户Id
///
public int FansId { get; set; }
///
/// 销售id
///
public int SaleId { get; set; }
}
}