1234567891011121314151617181920212223 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.sqlsugar.model.hj
- {
- [Tenant("hj")]
- [SugarTable("base_serialnorule", "流水规则表")]
- public class hjBaseSerialnoRule:BaseModel
- {
- [SugarColumn(ColumnName = "code", Length = 100, ColumnDataType = "nvarchar")]
- public string Code { get; set; }
- [SugarColumn(ColumnName = "name", Length = 100, ColumnDataType = "nvarchar")]
- public string Name { get; set; }
- [SugarColumn(ColumnName = "day_time")]
- public DateTime DayTime { get; set; }
- [SugarColumn(ColumnName = "last_value")]
- public int LastValue { get; set; }
- }
- }
|