using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLY.OBJComponents.OBJ_INTERFACE { public class PLCOS_OBJ_INTERFACE { #region pack public class Pack_SetPlanRequest { public string objname; public IEnumerable propertyNames; public long planid; } public class Pack_FeedPlanRequest { public long planid; } public class Pack_RemovePlanRequest { public long planid; } public class Pack_SetPlan2Reponse { public long planid; } public class Pack_SetPlan2Request { public string objname; public IEnumerable propertyNames; } #endregion #region Get #endregion #region Set #endregion #region Push #endregion #region Call /// /// Pack_SetPlanRequest /// public const UInt16 CALL_SET_PLAN = 3; /// /// Pack_FeedPlanRequest /// public const UInt16 CALL_FEED_PLAN = 4; /// /// Pack_RemovePlanRequest /// public const UInt16 CALL_REMOVE_PLAN = 5; /// /// requese:Pack_SetPlan2Request /// reponse:Pack_SetPlan2Reponse /// public const UInt16 CALL_SET_PLAN2 = 6; #endregion } }