private void UpdatePclaAppSys(PclaAppSysObjWrapper source, OPclaAppSys target)
 {
     target.Code          = source.Code;
     target.Name          = source.Name;
     target.Remark        = source.Remark;
     target.LatestVersion = source.Version;
     target.TypeCode      = source.TypeCode;
 }
 private void CopyPclaAppSys(OPclaAppSys source, PclaAppSysObjWrapper target)
 {
     target.Id = source.Id;
     if (this.IsEditMode)
     {
         target.Code     = source.Code;
         target.Name     = source.Name;
         target.Remark   = source.Remark;
         target.Version  = source.LatestVersion;
         target.TypeCode = source.TypeCode;
     }
 }
 public void ClearPclaAppSys()
 {
     _edtPclaAppSys = null;
     _pclaAppSys    = null;
 }