選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- namespace Learun.Application.WebApi
- {
- /// <summary>
- /// 提交实体数据
- /// </summary>
- public class ReqEntity<T> where T : class
- {
- public string keyValue { get; set; }
- public T entity { get; set; }
- }
- }
|