增加颜色标识库

This commit is contained in:
2025-09-28 10:43:29 +08:00
parent 9dbbf95b17
commit 0176754150
13 changed files with 279 additions and 75 deletions
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class BaseMaterialcolorOutput
{
public string MaterialColorId { get; set; }
public string UnitId { get; set; }
public string ProjectId { get; set; }
public string MaterialId { get; set; }
public string MaterialCode { get; set; }
public string ColorName { get; set; }
public string ColorCardNo { get; set; }
public string RGB { get; set; }
public string Remark { get; set; }
}
}