You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
618 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZhongLianModel
{
[SugarTable("ZL_Param")]
public class ParamDO
{
[SugarColumn(IsPrimaryKey = true,Length = 100)]
public string? Id { get; set; }
[SugarColumn(IsNullable = true,Length = 200)]
public string? Name { get; set; }
[SugarColumn(IsNullable = true,Length = 100)]
public string? Category { get; set; }
[SugarColumn(IsNullable = true)]
public int? UseCount { get; set; }
}
}