Example #1
0
        public async Task <MessageModel <string> > Post([FromBody] b_health b_health)
        {
            var data = new MessageModel <string>();

            var id = (await _b_healthServices.Add(b_health));

            data.success = id > 0;
            if (data.success)
            {
                data.response = id.ObjToString();
                data.msg      = "添加成功";
            }

            return(data);
        }
Example #2
0
        public async Task <MessageModel <string> > Update([FromBody] b_health b_health)
        {
            var data = new MessageModel <string>();

            if (b_health != null && b_health.ID > 0)
            {
                var id = (await _b_healthServices.Update(b_health));
                data.success = id;
                if (data.success)
                {
                    data.response = "id为" + b_health.ID.ToString() + "的数据更新成功";
                    data.msg      = "更新成功";
                }
                else
                {
                    data.response = "id为" + b_health.ID.ToString() + "的数据不存在";
                }
            }

            return(data);
        }