You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
858 B
39 lines
858 B
using System.ComponentModel.DataAnnotations;
|
|
using CK.SCP.Utils;
|
|
|
|
namespace ChangkeTec.SDMS.Model
|
|
{
|
|
public class ServiceResult
|
|
{
|
|
public bool Success { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Data { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
|
|
//public override string ToString()
|
|
//{
|
|
// return EntitiesHelper.GetPropertiesString(this);
|
|
//}
|
|
}
|
|
|
|
public class ServiceParam
|
|
{
|
|
public string Username { get; set; }
|
|
|
|
public string SheetCode { get; set; }
|
|
|
|
public string CompanyCode { get; set; }
|
|
|
|
public string DeptCode { get; set; }
|
|
|
|
public string RoleCode { get; set; }
|
|
|
|
//public override string ToString()
|
|
//{
|
|
// return EntitiesHelper.GetPropertiesString(this);
|
|
//}
|
|
}
|
|
}
|