产品定义

This commit is contained in:
DESKTOP-H2PAFLR\Administrator
2023-08-09 15:16:45 +08:00
parent 0de47fd5ea
commit 915c83bd2e
38 changed files with 2575 additions and 103 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.mes.md.DTO
{
public class SearchOptionDTO
{
public DateTime starttime { get; set; }
public DateTime endtime { get; set; }
public string measureCode { get; set; }
public string measureName { get; set; }
public string enableFlag { get; set; }
}
}