/// <summary> /// 克隆方法实现 /// </summary> /// <returns></returns> public new SanApplyList Clone() { SanApplyList sanApplyList = base.Clone() as SanApplyList; sanApplyList.SanApplyMain = SanApplyMain.Clone(); sanApplyList.StoreBase = StoreBase.Clone(); return(sanApplyList); }
/// <summary> /// 克隆函数实现 /// </summary> /// <returns></returns> public new SanApplyMain Clone() { SanApplyMain sanApplyMain = base.Clone() as SanApplyMain; sanApplyMain.StoreBase = StoreBase.Clone(); sanApplyMain.ApplyOper = ApplyOper.Clone(); sanApplyMain.AppoveOper = AppoveOper.Clone(); sanApplyMain.ReturnOper = ReturnOper.Clone(); sanApplyMain.ReturnAPPOper = ReturnAPPOper.Clone(); sanApplyMain.StopOper = StopOper.Clone(); return(sanApplyMain); }