using Central.Control.Domain;
using MES.Production.Entity.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public class DistributorUser
{
///
/// 用户信息
///
public En_SYS_USER userInfo
{
get; set;
}
///
/// 经销商信息
///
public SYS_DISTRIBUTORS distributorInfo
{
get; set;
}
}
}