using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { public class UpdateCorpAccordParasInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 标识 /// public long ID { get; set; } /// /// 关联参数 /// public string AccordParas { get; set; } } }