| 12345678910111213141516171819 |
- using SqlSugar;
- namespace SHJX.Service.Model.Dao
- {
- [SugarTable("wavekey")]
- public class Wavekey
- {
- /// <summary>
- /// 主键自增列
- /// </summary>
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- public int SerialKey { get; set; }
- /// <summary>
- /// 波次
- /// </summary>
- public string WaveKey { get; set; }
- }
- }
|