喷码贴标新增批号

This commit is contained in:
2024-06-14 09:28:52 +08:00
parent 726aea8912
commit ab0b4bedf4
2 changed files with 90 additions and 35 deletions

View File

@@ -0,0 +1,16 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities
{
[SugarTable("label_record")]
public class LableRecord : BaseEntity<string>
{
public string last_day { get; set; }
public int num { get; set; }
}
}