using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 更新客户方向输入 /// public class UpdateCorpDirectionInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 标识 /// public long ID { get; set; } /// /// 反向 /// public int Direction { get; set; } } }