| 1234567891011121314151617181920212223242526272829303132 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace PTMedicalInsurance.Entity{    // 【9002】签退 - 输入参数定义类    public class SignOutInput    {        /// <summary>        /// 签到编号        /// </summary>        public string sign_no { get; set; }        /// <summary>        /// 操作员编号        /// </summary>        public string opter_no { get; set; }    }    // 【9002】签退 - 输出参数定义类    public class SignOutOutput    {        /// <summary>        /// 签退时间        /// </summary>        public DateTime sign_time { get; set; }    }}
 |