1231
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Request.PerformanceRecord
|
||||
{
|
||||
public class PerformanceRecordQuery
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键ID
|
||||
/// </summary>
|
||||
public Guid Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 业务类型。3030 =进货入库;3110=销售出库
|
||||
/// </summary>
|
||||
public int DataType { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
}
|
||||
|
||||
public class PerformanceReportQuery
|
||||
{
|
||||
/// <summary>
|
||||
/// 对象类型 0 不指定内容,根据账号角色判断 ;1 店铺 ; 2 加盟商; 3 区域经理 ;4 大区;
|
||||
/// </summary>
|
||||
public int DataType { get; set; }
|
||||
/// <summary>
|
||||
/// DataType 不为0 时传 主键对象ID
|
||||
/// </summary>
|
||||
public Guid? Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// DataType不为0传值
|
||||
/// </summary>
|
||||
public string CodePath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日期
|
||||
/// </summary>
|
||||
public string Days { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user