using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace CY.Model
|
{
|
public partial class OA_Suppliers
|
{
|
private Sys_Dictionary _CooperativeState = null;
|
/// <summary>
|
/// 应用商合作状态
|
/// </summary>
|
public Sys_Dictionary CooperativeState
|
{
|
get
|
{
|
_CooperativeState = null == _CooperativeState ? new Sys_Dictionary() : _CooperativeState;
|
return _CooperativeState;
|
}
|
set
|
{
|
_CooperativeState = value;
|
}
|
|
}
|
|
private Sys_Dictionary _SuppliersLevel = null;
|
/// <summary>
|
/// 应用商级别
|
/// </summary>
|
public Sys_Dictionary SuppliersLevel
|
{
|
get
|
{
|
_SuppliersLevel = null == _SuppliersLevel ? new Sys_Dictionary() : _SuppliersLevel;
|
return _SuppliersLevel;
|
}
|
set
|
{
|
_SuppliersLevel = value;
|
}
|
|
}
|
private Sys_Dictionary _SuppliersType = null;
|
/// <summary>
|
/// 应用商类型
|
/// </summary>
|
public Sys_Dictionary SuppliersType
|
{
|
get
|
{
|
_SuppliersType = null == _SuppliersType ? new Sys_Dictionary() : _SuppliersType;
|
return _SuppliersType;
|
}
|
set
|
{
|
_SuppliersType = value;
|
}
|
|
}
|
|
}
|
}
|