NewGaoKaoApi/PaymentSDK/AliPay/Domain/ScheduleShiftItem.cs

43 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ScheduleShiftItem Data Structure.
/// </summary>
[Serializable]
public class ScheduleShiftItem : AopObject
{
/// <summary>
/// 班次序号可关联排班表得到具体工作计划0表示休息
/// </summary>
[XmlElement("chain_num")]
public long ChainNum { get; set; }
/// <summary>
/// 轮班周期内的第几天
/// </summary>
[XmlElement("day_num")]
public long DayNum { get; set; }
/// <summary>
/// 线路id
/// </summary>
[XmlElement("line_id")]
public string LineId { get; set; }
/// <summary>
/// 车辆编号id
/// </summary>
[XmlElement("vehicle_id")]
public string VehicleId { get; set; }
/// <summary>
/// 虚拟员工编号
/// </summary>
[XmlElement("vir_employ_id")]
public string VirEmployId { get; set; }
}
}