HuNan_NOSqlSugar/DM_Dal/Models/OrderDetail.cs

112 lines
2.8 KiB
C#
Raw Normal View History

2024-07-06 10:01:30 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
namespace DM_Dal.Models
{
/// <summary>
///
///</summary>
public class OrderDetail
{
/// <summary>
///
///</summary>
public int Id { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
//[SugarColumn(ColumnName = "order_id")]
//public int? OrderId { get; set; }
/// <summary>
///
///</summary>
public string PatientId { get; set; }
/// <summary>
///
///</summary>
public string OrderNo { get; set; }
/// <summary>
///
///</summary>
public DateTime ChargeDate { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
//[SugarColumn(ColumnName = "serial_no")]
//public int? SerialNo { get; set; }
/// <summary>
///
///</summary>
public string DrugId { get; set; }
public DrugInfo DrugInfo { get; set; }
/// <summary>
///
///</summary>
public int Quantity { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string OrderUnit { get; set; }
/// <summary>
///
/// 默认值: 1
///</summary>
public int? UnitConvercoef { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string SetManuNo { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string SetEffDate { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
//[SugarColumn(ColumnName = "price")]
//public string Price { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
//[SugarColumn(ColumnName = "total_price")]
//public string TotalPrice { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string UseDiscrip { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string UseFrequ { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string UseOnce { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string UseBy { get; set; }
/// <summary>
///
/// 默认值: '0'
///</summary>
public string UseSelf { get; set; }
/// <summary>
///
/// 默认值: NULL
///</summary>
public string UseDosage { get; set; }
}
}