using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.Api.Req { /// /// 提交灯光日间时间 /// public class SetDayTimeReq { /// /// 日 灯光开启时间 /// public string LightDayStartTime { get; set; } /// /// 日 灯光关闭时间 /// public string LightDayEndTime { get; set; } } }