using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class UpdateExpireDayUnderCorpInput
{
///
/// 客户id
///
public long CorpID { get; set; }
///
/// id
///
public long ID { get; set; }
///
/// 失效日期
///
public DateTime ExpireDay { get; set; }
}
}