29 lines
712 B
C#
29 lines
712 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DM_Weight.Models
|
|
{
|
|
[SugarTable("drug_manu_no")]
|
|
public class DrugManuNo
|
|
{
|
|
[SugarColumn(ColumnName = "dmnguid", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "drug_id")]
|
|
public string DrugId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "manu_no")]
|
|
public string ManuNo { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "manu_date")]
|
|
public string ManuDate { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "eff_date")]
|
|
public string EffDate { get; set; }
|
|
}
|
|
}
|