12345678910111213141516171819202122232425262728293031323334353637 |
- using ProtoBuf;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace TEAMModelOS.GRPC.Models.Dtos
- {
- [ProtoContract]
- public class RequestDict
- {
- /// <summary>
- /// 查询dict
- /// </summary>
- [ProtoMember(1)]
- public Dictionary<string, int> dict { get; set; }
- [ProtoMember(2)]
- public Dictionary<string, Cv> cv { get; set; }
- [ProtoMember(3)]
- public List<Cv> lsit { get; set; }
- }
- [ProtoContract]
- public class Cv
- {
- /// <summary>
- /// 查询dict
- /// </summary>
- [ProtoMember(1)]
- public string code { get; set; }
- /// <summary>
- /// 查询dict
- /// </summary>
- [ProtoMember(2)]
- public string val { get; set; }
- }
- }
|