71 lines
1.2 KiB
C#
71 lines
1.2 KiB
C#
using System;
|
|
using System.CodeDom.Compiler;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SoM_PrnControl.YoyakuServiceReference;
|
|
|
|
[Serializable]
|
|
[GeneratedCode("System.Xml", "4.8.9032.0")]
|
|
[DebuggerStepThrough]
|
|
[DesignerCategory("code")]
|
|
[XmlType(Namespace = "http://rem.kessai.info/Kessai/")]
|
|
public class InParamCashOutConsequence : INotifyPropertyChanged
|
|
{
|
|
private string dataSyubetsuField;
|
|
|
|
private string coRecvNumField;
|
|
|
|
private string coCorpCodeField;
|
|
|
|
[XmlElement(Order = 0)]
|
|
public string DataSyubetsu
|
|
{
|
|
get
|
|
{
|
|
return dataSyubetsuField;
|
|
}
|
|
set
|
|
{
|
|
dataSyubetsuField = value;
|
|
RaisePropertyChanged("DataSyubetsu");
|
|
}
|
|
}
|
|
|
|
[XmlElement(Order = 1)]
|
|
public string CoRecvNum
|
|
{
|
|
get
|
|
{
|
|
return coRecvNumField;
|
|
}
|
|
set
|
|
{
|
|
coRecvNumField = value;
|
|
RaisePropertyChanged("CoRecvNum");
|
|
}
|
|
}
|
|
|
|
[XmlElement(Order = 2)]
|
|
public string CoCorpCode
|
|
{
|
|
get
|
|
{
|
|
return coCorpCodeField;
|
|
}
|
|
set
|
|
{
|
|
coCorpCodeField = value;
|
|
RaisePropertyChanged("CoCorpCode");
|
|
}
|
|
}
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName)
|
|
{
|
|
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|