18 lines
468 B
18 lines
468 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class HandOverModel
|
|
{
|
|
public string Identification { set; get; }
|
|
public string TransCode { set; get; }
|
|
public string TransSequence { set; get; }
|
|
public string User { set; get; }
|
|
public string MTime { set; get; }
|
|
public string WorkPoint { set; get; }
|
|
}
|
|
}
|