using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
///
///
///
[SugarTable("zx_recipe_para")]
public class ZxRecipeParaEntity
{
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "recipe_code")]
public string RecipeCode { get; set; } = null;
}
}