using Microsoft.AspNetCore.Http; using System.Text.Json.Serialization; namespace Sharing.Province.Dtos.XieTong.Send { /// /// 工单发起甄别 /// public class ScreenCaseInfoSendRequest : ProvinceRequest { /// /// /// /// public override string GetRequestUrl() => "screen_case_info_send"; /// /// /// /// public override string GetHttpMethod() => HttpMethods.Post; } /// /// 工单发起甄别 /// public class ScreenCaseInfoSendInfo : BaseModel { /// /// 申请人员 /// [JsonPropertyName("APPLY_NAME")] public string ApplyName { get; set; } /// /// 申请时间 /// [JsonPropertyName("APPLY_TIME")] public DateTime? ApplyTime { get; set; } /// /// 申请部门 /// [JsonPropertyName("APPLY_OUNAME")] public string ApplyOuName { get; set; } /// /// 申请原因 /// [JsonPropertyName("APPLY_REASON")] public string ApplyReason { get; set; } /// /// 申请人员 /// [JsonPropertyName("APPLY_TYPE")] public string ApplyType { get; set; } } }