示例#1
0
        public string getPostsIdFromQRCode(string shareId)
        {
            PostsProvider provider  = new PostsProvider();
            tbl_sharecode sharecode = provider.getShareCodeRecord(shareId);

            return(sharecode.postsId);
        }
        public ShareCode entityToModel(tbl_sharecode entity)
        {
            ShareCode model = new ShareCode();

            model.openId    = entity.openId;
            model.postsId   = entity.postsId;
            model.shareId   = entity.shareId;
            model.shareTime = entity.shareTime;
            return(model);
        }