123456789101112131415161718192021222324252627 |
- using ProtoBuf;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Net;
- using System.Threading.Tasks;
- namespace TEAMModelOS.SDK.Module.AzureCosmosDBV3
- {
- [ProtoContract]
- public class IdPk
- {
- [ProtoMember(1)]
- [Required(ErrorMessage = "{0} 必须填写")]
- public string id { get; set; }
- [ProtoMember(2)]
- public string pk { get; set; }
- /// <summary>
- /// 删除状态 NoContent(删除成功),NotFound(未找到,删除失败)
- /// </summary>
- [ProtoMember(3)]
- public HttpStatusCode StatusCode { get;set;}
- }
- }
|