using Edu.Common.Enum;
using Edu.Common.Enum.Customer;
using System;
using VT.FW.DB;
namespace Edu.Model.Entity.Customer
{
///
/// 同业客户管理实体类
///
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Customer
{
///
/// 客户资料id
///
public int CustomerId { get; set; }
///
/// 客户名称
///
public string CustomerName { get; set; }
///
/// 联系电话
///
public string ContactNumber { get; set; }
///
/// 传真
///
public string Fax { get; set; }
///
/// 业务QQ
///
public string QQ { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// 客户地址
///
public string Address { get; set; }
///
/// 联系人性别 0 未知,1男, 2女
///
public int Sex { get; set; }
///
/// 图片
///
public string Image { get; set; }
///
/// 客户来源
///
public int CustomerSourceType { get; set; }
///
/// 客户来源信息
///
public string CustomerSource { get; set; }
///
/// 国家id
///
public int CountryId { get; set; }
///
/// 省id
///
public int ProvinceId { get; set; }
///
/// 市id
///
public int CityId { get; set; }
///
/// 区id
///
public int DistrictId { get; set; }
///
/// 经度纬度
///
public string LngLat { get; set; }
///
/// 同行幸福存折
///
public decimal Client_Balance { get; set; }
///
/// 累计佣金
///
public decimal TotalCommission { get; set; }
///
/// 可提现佣金
///
public decimal CommissionWithdrawal { get; set; }
///
/// 账号
///
public string Account { get; set; }
///
/// 密码
///
public string Password { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 集团编号
///
public int Group_Id { get; set; }
///
/// 校区编号
///
public int School_Id { get; set; }
///
/// 创建人
///
public int CreateBy { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 状态 0正常,1删除
///
public DateStateEnum Status { get; set; }
///
/// 修改时间
///
public DateTime UpdateTime { get; set; }
///
/// 账号状态
///
public CustomerStateEnum CustomerState { get; set; }
///
/// 审批状态 1-审批通过,2-拒绝
///
public int ApproveState { get; set; }
///
/// 审批意见
///
public string ApproveContent { get; set; }
///
/// 审核人
///
public int ApproveId { get; set; }
///
/// 审核时间
///
public DateTime ApproveTime { get; set; }
///
/// 微信用户OpenId
///
public string OpenId { get; set; }
///
/// 微信用户UnionId
///
public string UnionId { get; set; }
///
/// 微信昵称
///
public string WeChatName { get; set; }
///
/// 头像
///
public string WeChatPhoto { get; set; }
///
/// 小程序ID
///
public int MallBaseId { get; set; }
}
}