Browse Source

备注

master
luanhui 8 years ago
parent
commit
bf33bf1df1
2 changed files with 7 additions and 0 deletions
  1. +4
    -0
      B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillFlag_/SubKillFlagEdit.cs
  2. +3
    -0
      B3SubstituteKill/BO/BaseInfos/SubKillFlag/SubKillFlag_Detail.cs

+ 4
- 0
B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillFlag_/SubKillFlagEdit.cs View File

@ -57,6 +57,10 @@ namespace BWP.Web.Pages.B3SubstituteKill.BaseInfos.SubKillFlag_
_detailGrid.Columns.EAdd(new DFEditGridColumn<DFTextBox>("Name")).InitEditControl += (sender, e) => { _detailGrid.Columns.EAdd(new DFEditGridColumn<DFTextBox>("Name")).InitEditControl += (sender, e) => {
e.Control.Style["width"] = "400px"; e.Control.Style["width"] = "400px";
}; };
_detailGrid.Columns.EAdd(new DFEditGridColumn<DFTextBox>("Remark")).InitEditControl += (sender, e) => {
e.Control.Style["width"] = "400px";
};
var section = mPageLayoutManager.AddSection("Detail", "标识明细"); var section = mPageLayoutManager.AddSection("Detail", "标识明细");
titlePanel.SetPageLayoutSetting(mPageLayoutManager, section.Name); titlePanel.SetPageLayoutSetting(mPageLayoutManager, section.Name);


+ 3
- 0
B3SubstituteKill/BO/BaseInfos/SubKillFlag/SubKillFlag_Detail.cs View File

@ -18,6 +18,9 @@ namespace BWP.B3SubstituteKill.BO
[LogicName("标识名称")] [LogicName("标识名称")]
public string Name { get; set; } public string Name { get; set; }
[LogicName("备注")]
public string Remark { get; set; }
public string Spell { get; set; } public string Spell { get; set; }
} }


Loading…
Cancel
Save