| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | namespace DocumentServiceApi.InitQMessage |
| | | { |
| | | /// <summary> |
| | | /// 订单详情 |
| | | /// 订单消息模型详情 |
| | | /// </summary> |
| | | public class TenantOderInfo |
| | | internal class TenantOderInfo |
| | | { |
| | | public int MyProperty { get; set; } |
| | | /// <summary> |
| | | /// 手机号码 |
| | | /// </summary> |
| | | public string ITCode { get; set; } |
| | | /// <summary> |
| | | /// 政采用户中心ID |
| | | /// </summary> |
| | | public Guid? ZcUserID { get; set; } |
| | | /// <summary> |
| | | /// 月份 |
| | | /// </summary> |
| | | [Display(Name = "月份")] |
| | | public int? MonthCount { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 单位个数 |
| | | /// </summary> |
| | | [Display(Name = "单位个数")] |
| | | public int? UnitCount { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 员工 |
| | | /// </summary> |
| | | [Display(Name = "员工个数")] |
| | | public int? EmployeeCount { get; set; } |
| | | /// <summary> |
| | | /// 单价 |
| | | /// </summary> |
| | | [Display(Name = "金额")] |
| | | public decimal Amount { get; set; } |
| | | /// <summary> |
| | | /// 支付方式 |
| | | /// </summary> |
| | | public string? PayType { get; set; } |
| | | /// <summary> |
| | | /// 支付时间 |
| | | /// </summary> |
| | | public DateTime? PayTime { get; set; } |
| | | /// <summary> |
| | | /// 描述 |
| | | /// </summary> |
| | | public string? Description { get; set; } |
| | | /// <summary> |
| | | /// 名称 |
| | | /// </summary> |
| | | public string? TenantName { get; set; } |
| | | |
| | | |
| | | } |
| | | } |