username@email.com
2025-05-09 66beb245e516809514642c00922f0339bf760518
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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;
            }
 
        }
 
    }
}