using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CY.Model { /// /// 扩展部分 /// public partial class Promotion_IncomeRule { private Sys_Dictionary _sourcetype = null; /// /// 来源类型 /// public Sys_Dictionary SourceType { get { _sourcetype = null == _sourcetype ? new Sys_Dictionary() : _sourcetype; return _sourcetype; } set { _sourcetype = value; } } } }