using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EShang.Common
{
///
/// 经营模式枚举
///
public enum BusinessTypeEnum
{
///
///
///
业主自营 = 1000,
///
///
///
合作经营 = 2000,
///
///
///
固定租金 = 3000,
///
///
///
临时业态 = 4000
}
}