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
65
66
67
68
69
70
71
72
73
74
75
76
/**  版本信息模板在安装目录下,可自行修改。
* EC_OrderPrintParameter.cs
*
* 功 能: N/A
* 类 名: EC_OrderPrintParameter
*
* Ver    变更日期             负责人  变更内容
* ───────────────────────────────────
* V0.01  2013-5-6 11:25:23   N/A    初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 版权所有:四川川印              │
*└──────────────────────────────────┘
*/
using System;
using CY.Infrastructure.Common;
using CY.Infrastructure.Domain;
namespace CY.Model
{
    /// <summary>
    /// 订单印刷参数表
    /// </summary>
    [Serializable]
    public partial class EC_OrderPrintParameter : IAggregateRoot
    {
        public EC_OrderPrintParameter()
        {}
        #region Model
        private int _orderid;
        private string _printparameter;
        /// <summary>
        /// 订单唯一编号
        /// </summary>
        public int OrderId
        {
            set{ _orderid=value;}
            get{return _orderid;}
        }
        /// <summary>
        /// 印刷参数
        /// </summary>
        public string PrintParameter
        {
            set{ _printparameter=value;}
            get{return _printparameter;}
        }
        #endregion Model
        #region Visiter
        /// <summary>
        /// 属性访问器
        /// </summary>
        /// <param name="name">属性名</param>
        /// <param name="index">索引</param>
        /// <param name="isChange">是否将指定属性设置为传入值</param>
        /// <param name="value">需要赋予的值</param>
        /// <returns>与名称对应的属性值</returns>
        public object Visiter(string name, int? index = -1, bool isChange = false, object value = null)
        {
            object theValue = null;
            if ("OrderId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 1)
            {
                this.OrderId = isChange ? MyConvert.ConvertToInt32(value).Value : OrderId;
                theValue = this.OrderId;
            }
            else if ("PrintParameter".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 2)
            {
                this.PrintParameter = isChange ? MyConvert.ConvertToString(value) : PrintParameter;
                theValue = this.PrintParameter;
            }
            return theValue;
        }
        #endregion
    }
}