This commit is contained in:
chi
2022-05-30 16:24:06 +09:00
parent 0d46bc87c0
commit 6a5eb13a6c
11 changed files with 611 additions and 495 deletions

View File

@@ -2908,6 +2908,8 @@ namespace JobReportMailService {
private global::System.Data.DataColumn columnoutdate;
private global::System.Data.DataColumn columnemail;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public vJobReportUserListDataTable() {
@@ -2973,6 +2975,14 @@ namespace JobReportMailService {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public global::System.Data.DataColumn emailColumn {
get {
return this.columnemail;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -3010,13 +3020,14 @@ namespace JobReportMailService {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public vJobReportUserListRow AddvJobReportUserListRow(string gcode, string name, string id, string outdate) {
public vJobReportUserListRow AddvJobReportUserListRow(string gcode, string name, string id, string outdate, string email) {
vJobReportUserListRow rowvJobReportUserListRow = ((vJobReportUserListRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
gcode,
name,
id,
outdate};
outdate,
email};
rowvJobReportUserListRow.ItemArray = columnValuesArray;
this.Rows.Add(rowvJobReportUserListRow);
return rowvJobReportUserListRow;
@@ -3043,6 +3054,7 @@ namespace JobReportMailService {
this.columnname = base.Columns["name"];
this.columnid = base.Columns["id"];
this.columnoutdate = base.Columns["outdate"];
this.columnemail = base.Columns["email"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -3056,6 +3068,8 @@ namespace JobReportMailService {
base.Columns.Add(this.columnid);
this.columnoutdate = new global::System.Data.DataColumn("outdate", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnoutdate);
this.columnemail = new global::System.Data.DataColumn("email", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnemail);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columnid}, false));
this.columngcode.AllowDBNull = false;
@@ -3064,6 +3078,7 @@ namespace JobReportMailService {
this.columnid.Unique = true;
this.columnid.MaxLength = 20;
this.columnoutdate.MaxLength = 20;
this.columnemail.MaxLength = 100;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -6851,6 +6866,22 @@ namespace JobReportMailService {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public string email {
get {
if (this.IsemailNull()) {
return string.Empty;
}
else {
return ((string)(this[this.tablevJobReportUserList.emailColumn]));
}
}
set {
this[this.tablevJobReportUserList.emailColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public bool IsnameNull() {
@@ -6886,6 +6917,18 @@ namespace JobReportMailService {
public void SetoutdateNull() {
this[this.tablevJobReportUserList.outdateColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public bool IsemailNull() {
return this.IsNull(this.tablevJobReportUserList.emailColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public void SetemailNull() {
this[this.tablevJobReportUserList.emailColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
@@ -11792,6 +11835,7 @@ SELECT idx, gcode, cate, title, tolist, bcc, cc, subject, tail, body, selfTo, se
tableMapping.ColumnMappings.Add("name", "name");
tableMapping.ColumnMappings.Add("id", "id");
tableMapping.ColumnMappings.Add("outdate", "outdate");
tableMapping.ColumnMappings.Add("email", "email");
this._adapter.TableMappings.Add(tableMapping);
}
@@ -11808,8 +11852,8 @@ SELECT idx, gcode, cate, title, tolist, bcc, cc, subject, tail, body, selfTo, se
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "SELECT gcode, name, id, outdate\r\nFROM vGroupUser\r\nWHERE (ISNULL(useJobRepor" +
"t, 0) = 1) AND (gcode = @gcode)";
this._commandCollection[0].CommandText = "SELECT gcode, name, id, outdate, email\r\nFROM vGroupUser\r\nWHERE (ISNULL(useJ" +
"obReport, 0) = 1) AND (gcode = @gcode)";
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}