| | |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[通过选择的所属组织查询所属班组] |
| | | /// <summary> |
| | | /// 通过选择的所属组织查询所属班组 |
| | | /// </summary> |
| | | /// <param name="stu_torgcode">组织编码</param> |
| | | /// <param name="description">组织类型</param> |
| | | /// <returns></returns> |
| | | [Route(template: "StorgGroupSelect")] |
| | | [HttpGet] |
| | | public HttpResponseMessage StorgGroupSelect(string stu_torgcode, string description) |
| | | { |
| | | mes = BaseDateBLL.StorgGroupSelect(stu_torgcode, description); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[通过选择的所属组织查询所属角色类型] |
| | | /// <summary> |
| | | /// 通过选择的所属组织查询所属角色类型 |
| | | /// </summary> |
| | | /// <param name="stu_torgcode">组织编码</param> |
| | | /// <param name="description">组织类型</param> |
| | | /// <returns></returns> |
| | | [Route(template: "StorgRoleSelect")] |
| | | [HttpGet] |
| | | public HttpResponseMessage StorgRoleSelect(string stu_torgcode, string description) |
| | | { |
| | | mes = BaseDateBLL.StorgRoleSelect(stu_torgcode, description); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | |
| | | |
| | | #region[ERP生产车间/部门信息查询] |
| | | /// <summary> |
| | | /// ERP生产车间/部门信息查询 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route(template: "ErpWkshopDepartmentSelect")] |
| | | [HttpGet] |
| | | public HttpResponseMessage ErpWkshopDepartmentSelect() |
| | | { |
| | | mes = BaseDateBLL.ErpWkshopDepartmentSelect(); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[ERP生仓库信息查询] |
| | | /// <summary> |
| | | /// ERP生仓库信息查询 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route(template: "ErpWarehouseSelect")] |
| | | [HttpGet] |
| | | public HttpResponseMessage ErpWarehouseSelect() |
| | | { |
| | | mes = BaseDateBLL.ErpWarehouseSelect(); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[ERP生用户信息查询] |
| | | /// <summary> |
| | | /// ERP生用户信息查询 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route(template: "ErpUserSelect")] |
| | | [HttpGet] |
| | | public HttpResponseMessage ErpUserSelect() |
| | | { |
| | | mes = BaseDateBLL.ErpUserSelect(); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | } |
| | | } |