Add project files.
This commit is contained in:
parent
8777687dbf
commit
eb01220108
13
.config/dotnet-tools.json
Normal file
13
.config/dotnet-tools.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"isRoot": true,
|
||||||
|
"tools": {
|
||||||
|
"dotnet-ef": {
|
||||||
|
"version": "10.0.0",
|
||||||
|
"commands": [
|
||||||
|
"dotnet-ef"
|
||||||
|
],
|
||||||
|
"rollForward": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
.vscode/launch.json
vendored
Normal file
7
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": []
|
||||||
|
}
|
||||||
18
Controllers/DashboardController.cs
Normal file
18
Controllers/DashboardController.cs
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace simrs.Controllers
|
||||||
|
{
|
||||||
|
[Authorize]
|
||||||
|
public class DashboardController : Controller
|
||||||
|
{
|
||||||
|
public IActionResult Index()
|
||||||
|
{
|
||||||
|
return Redirect("/Dashboard/DashboardFo");
|
||||||
|
}
|
||||||
|
public IActionResult DashboardFo()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
87
Controllers/HomeController.cs
Normal file
87
Controllers/HomeController.cs
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
using Microsoft.AspNetCore.Authentication;
|
||||||
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using simrs.Models;
|
||||||
|
using simrs.Models.simrs;
|
||||||
|
using simrs.Scripts;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Security.Claims;
|
||||||
|
|
||||||
|
namespace simrs.Controllers
|
||||||
|
{
|
||||||
|
public class HomeController : Controller
|
||||||
|
{
|
||||||
|
private readonly AppVersionHolder _appVersion;
|
||||||
|
private readonly simrscontext db;
|
||||||
|
|
||||||
|
public HomeController(AppVersionHolder appVersion, simrscontext _db)
|
||||||
|
{
|
||||||
|
_appVersion = appVersion;
|
||||||
|
db = _db;
|
||||||
|
}
|
||||||
|
|
||||||
|
public IActionResult Index(string returnUrl, string? errorMessage)
|
||||||
|
{
|
||||||
|
ViewBag.Version = _appVersion.Version;
|
||||||
|
ViewBag.appname = db.sys_app_inf.FirstOrDefault()?.sys_app_inf_nm;
|
||||||
|
ViewBag.ErrorMessage = errorMessage;
|
||||||
|
if (User?.Identity?.IsAuthenticated == true) // Added null checks for User and Identity
|
||||||
|
{
|
||||||
|
var users = User.Identity.Name;
|
||||||
|
return RedirectToAction("Index", "Dashboard");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[HttpPost]
|
||||||
|
public async Task<IActionResult> Index(bil_login model, string? returnUrl)
|
||||||
|
{
|
||||||
|
if (User?.Identity?.IsAuthenticated == true) // Added null checks for User and Identity
|
||||||
|
{
|
||||||
|
return Index(returnUrl, "Sudah Login");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
var encrypted = Enkrip.Encrypt(model.bil_login_pass, model.bil_login_uname);
|
||||||
|
|
||||||
|
var user = db.bil_login.FirstOrDefault(t =>
|
||||||
|
t.bil_login_uname == model.bil_login_uname &&
|
||||||
|
t.bil_login_pass == encrypted);
|
||||||
|
|
||||||
|
if (user == null)
|
||||||
|
{
|
||||||
|
return Index(string.Empty, "User/Password Salah");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set auth cookie
|
||||||
|
var claims = new List<Claim> {
|
||||||
|
new Claim(ClaimTypes.Name, user.bil_login_kd)
|
||||||
|
};
|
||||||
|
|
||||||
|
var identity = new ClaimsIdentity(claims, "Cookies");
|
||||||
|
await HttpContext.SignInAsync("Cookies", new ClaimsPrincipal(identity));
|
||||||
|
|
||||||
|
// Inilah bagian penting:
|
||||||
|
if (!string.IsNullOrEmpty(returnUrl) && Url.IsLocalUrl(returnUrl))
|
||||||
|
return Redirect(returnUrl);
|
||||||
|
|
||||||
|
return RedirectToAction("Index", "Dashboard");
|
||||||
|
}
|
||||||
|
[AllowAnonymous]
|
||||||
|
public async Task<IActionResult> LogOff()
|
||||||
|
{
|
||||||
|
await HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
||||||
|
|
||||||
|
// Hapus cookie custom kalau kamu memang membuat cookie lain
|
||||||
|
Response.Cookies.Delete(".appera");
|
||||||
|
|
||||||
|
return RedirectToAction("Index", "Home");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
83
Controllers/bil_pendaftaran_riController.cs
Normal file
83
Controllers/bil_pendaftaran_riController.cs
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using simrs.Models.simrs;
|
||||||
|
|
||||||
|
namespace simrs.Controllers
|
||||||
|
{
|
||||||
|
[Authorize]
|
||||||
|
public class bil_pendaftaran_riController : Controller
|
||||||
|
{
|
||||||
|
private readonly simrscontext db;
|
||||||
|
public bil_pendaftaran_riController(simrscontext _db)
|
||||||
|
{
|
||||||
|
db = _db;
|
||||||
|
}
|
||||||
|
public IActionResult Index()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<IActionResult> NewGetRi()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string query = @"
|
||||||
|
SELECT json_agg(row_to_json(sub))
|
||||||
|
FROM (
|
||||||
|
SELECT
|
||||||
|
ROW_NUMBER() OVER (ORDER BY t.bil_pendaftaran_ri_tgl_msk DESC) AS no,
|
||||||
|
to_char(t.bil_pendaftaran_ri_tgl_msk, 'DD Mon YYYY HH24:MI:SS') AS bil_pendaftaran_ri_tgl_msk,
|
||||||
|
t.bil_pendaftaran_ri_kd,
|
||||||
|
p.bil_pasien_rm,
|
||||||
|
b.bil_biodata_nama,
|
||||||
|
km.bil_kamar_nm,
|
||||||
|
kr.bil_kelas_rawat_nm,
|
||||||
|
kb.bil_kamar_bed_nm,
|
||||||
|
dr.bil_dokter_nm,
|
||||||
|
asr.bil_asuransi_nm,
|
||||||
|
asr.bil_asuransi_kd,
|
||||||
|
t.bil_pendaftaran_ri_tgl_klr
|
||||||
|
FROM bil_pendaftaran_ri t
|
||||||
|
LEFT JOIN bil_pasien p ON t.bil_pasien_rm = p.bil_pasien_rm
|
||||||
|
LEFT JOIN bil_biodata b ON b.bil_biodata_kd = p.bil_bil_biodata_kd
|
||||||
|
LEFT JOIN bil_kamar_tarif kt ON kt.bil_kamar_tarif_kd = t.bil_kamar_tarif_kd
|
||||||
|
LEFT JOIN bil_kamar km ON km.bil_kamar_kd = kt.bil_kamar_kd
|
||||||
|
LEFT JOIN bil_kelas_rawat kr ON kr.bil_kelas_rawat_kd = t.bil_kelas_rawat_kd
|
||||||
|
LEFT JOIN bil_dokter dr ON dr.bil_dokter_kd = t.bil_dokter_kd
|
||||||
|
LEFT JOIN bil_pasien_assuransi pa ON pa.bil_pasien_assuransi_kd = t.bil_pasien_assuransi_kd
|
||||||
|
LEFT JOIN bil_asuransi asr ON asr.bil_asuransi_kd = pa.bil_asuransi_kd
|
||||||
|
LEFT JOIN bil_kamar_bed kb ON kb.bil_kamar_bed_kd = t.bil_kamar_bed_kd
|
||||||
|
WHERE t.bil_pendaftaran_ri_flag = '1'
|
||||||
|
AND t.bil_pendaftaran_ri_tgl_msk IS NOT NULL
|
||||||
|
ORDER BY t.bil_pendaftaran_ri_tgl_msk DESC
|
||||||
|
) sub;
|
||||||
|
";
|
||||||
|
|
||||||
|
using var conn = db.Database.GetDbConnection();
|
||||||
|
await conn.OpenAsync();
|
||||||
|
|
||||||
|
using var cmd = conn.CreateCommand();
|
||||||
|
cmd.CommandText = query;
|
||||||
|
|
||||||
|
var json = (await cmd.ExecuteScalarAsync())?.ToString();
|
||||||
|
|
||||||
|
return Ok(new
|
||||||
|
{
|
||||||
|
code = 200,
|
||||||
|
message = "OK",
|
||||||
|
data = System.Text.Json.JsonSerializer.Deserialize<object>(json ?? "[]")
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return StatusCode(500, new
|
||||||
|
{
|
||||||
|
code = 500,
|
||||||
|
message = ex.Message
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
93
Controllers/bil_pendaftaran_rjController.cs
Normal file
93
Controllers/bil_pendaftaran_rjController.cs
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Npgsql;
|
||||||
|
using simrs.Models.simrs;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace simrs.Controllers
|
||||||
|
{
|
||||||
|
[Authorize]
|
||||||
|
public class bil_pendaftaran_rjController : Controller
|
||||||
|
{
|
||||||
|
private readonly simrscontext db;
|
||||||
|
public bil_pendaftaran_rjController(simrscontext _db)
|
||||||
|
{
|
||||||
|
db = _db;
|
||||||
|
}
|
||||||
|
public IActionResult Index()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
[HttpGet]
|
||||||
|
public async Task<IActionResult> GetIndex(DateTime? startdate)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (startdate == null) startdate = DateTime.Now;
|
||||||
|
string query = @"
|
||||||
|
SELECT json_agg(row_to_json(sub))
|
||||||
|
FROM (
|
||||||
|
SELECT
|
||||||
|
ROW_NUMBER() OVER (ORDER BY t.bil_pendaftaran_rj_tgl_input DESC) AS no,
|
||||||
|
to_char(t.bil_pendaftaran_rj_tgl_periksa, 'DD Mon YYYY ')
|
||||||
|
|| COALESCE(t.bil_pendaftaran_rj_jadwal, '00:00:00')
|
||||||
|
AS bil_pendaftaran_rj_tgl_periksa,
|
||||||
|
t.bil_pendaftaran_rj_kd,
|
||||||
|
p.bil_pasien_rm,
|
||||||
|
b.bil_biodata_nama,
|
||||||
|
dr.bil_dokter_nm,
|
||||||
|
asr.bil_asuransi_nm,
|
||||||
|
asr.bil_asuransi_kd,
|
||||||
|
su.bil_sub_unit_nm,
|
||||||
|
t.bil_pendaftaran_rj_antrian
|
||||||
|
FROM bil_pendaftaran_rj t
|
||||||
|
LEFT JOIN bil_pasien p ON t.bil_pasien_rm = p.bil_pasien_rm
|
||||||
|
LEFT JOIN bil_biodata b ON b.bil_biodata_kd = p.bil_bil_biodata_kd
|
||||||
|
LEFT JOIN bil_dokter dr ON dr.bil_dokter_kd = t.bil_dokter_kd
|
||||||
|
LEFT JOIN bil_pasien_assuransi pa ON pa.bil_pasien_assuransi_kd = t.bil_pasien_assuransi_kd
|
||||||
|
LEFT JOIN bil_asuransi asr ON asr.bil_asuransi_kd = pa.bil_asuransi_kd
|
||||||
|
LEFT JOIN bil_sub_unit su ON su.bil_sub_unit_kd = t.bil_sub_unit_kd
|
||||||
|
WHERE t.bil_pendaftaran_rj_flag <> '0'
|
||||||
|
AND EXTRACT(YEAR FROM t.bil_pendaftaran_rj_tgl_periksa) = @p0
|
||||||
|
AND EXTRACT(MONTH FROM t.bil_pendaftaran_rj_tgl_periksa) = @p1
|
||||||
|
AND EXTRACT(DAY FROM t.bil_pendaftaran_rj_tgl_periksa) = @p2
|
||||||
|
ORDER BY t.bil_pendaftaran_rj_tgl_input DESC
|
||||||
|
) sub;";
|
||||||
|
|
||||||
|
var paramYear = new NpgsqlParameter("@p0", startdate.Value.Year);
|
||||||
|
var paramMonth = new NpgsqlParameter("@p1", startdate.Value.Month);
|
||||||
|
var paramDay = new NpgsqlParameter("@p2", startdate.Value.Day);
|
||||||
|
string jsonresult;
|
||||||
|
|
||||||
|
using var conn = db.Database.GetDbConnection();
|
||||||
|
await conn.OpenAsync();
|
||||||
|
|
||||||
|
using var cmd = conn.CreateCommand();
|
||||||
|
cmd.CommandText = query;
|
||||||
|
cmd.Parameters.Add(paramYear);
|
||||||
|
cmd.Parameters.Add(paramMonth);
|
||||||
|
cmd.Parameters.Add(paramDay);
|
||||||
|
|
||||||
|
var scalar = await cmd.ExecuteScalarAsync();
|
||||||
|
jsonresult = scalar?.ToString();
|
||||||
|
if (string.IsNullOrWhiteSpace(jsonresult))
|
||||||
|
jsonresult = "[]";
|
||||||
|
|
||||||
|
return Ok(new
|
||||||
|
{
|
||||||
|
code = 200,
|
||||||
|
message = "OK",
|
||||||
|
data = System.Text.Json.JsonSerializer.Deserialize<object>(jsonresult)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return StatusCode(500, new
|
||||||
|
{
|
||||||
|
code = 500,
|
||||||
|
message = ex.Message
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
9
Models/ErrorViewModel.cs
Normal file
9
Models/ErrorViewModel.cs
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
namespace simrs.Models
|
||||||
|
{
|
||||||
|
public class ErrorViewModel
|
||||||
|
{
|
||||||
|
public string? RequestId { get; set; }
|
||||||
|
|
||||||
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||||||
|
}
|
||||||
|
}
|
||||||
13
Models/simrs/antrol_recive_request.cs
Normal file
13
Models/simrs/antrol_recive_request.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class antrol_recive_request
|
||||||
|
{
|
||||||
|
public int recive_id { get; set; }
|
||||||
|
|
||||||
|
public string? jsondata { get; set; }
|
||||||
|
|
||||||
|
public DateTime? tanggal { get; set; }
|
||||||
|
}
|
||||||
15
Models/simrs/antrol_send_request.cs
Normal file
15
Models/simrs/antrol_send_request.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class antrol_send_request
|
||||||
|
{
|
||||||
|
public int send_id { get; set; }
|
||||||
|
|
||||||
|
public string? jsondata { get; set; }
|
||||||
|
|
||||||
|
public DateTime? tanggal { get; set; }
|
||||||
|
|
||||||
|
public string? jsonresult { get; set; }
|
||||||
|
}
|
||||||
41
Models/simrs/bil_acc_coa.cs
Normal file
41
Models/simrs/bil_acc_coa.cs
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_coa
|
||||||
|
{
|
||||||
|
public string bil_acc_coa_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_login_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_sub_kel_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_nama { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_coa_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_flag { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_gl_detil> bil_acc_gl_detilbil_acc_coa_kdNavigation { get; set; } = new List<bil_acc_gl_detil>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_gl_detil> bil_acc_gl_detilbil_acc_gl_detil_dNavigation { get; set; } = new List<bil_acc_gl_detil>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_gl_detil> bil_acc_gl_detilbil_acc_gl_detil_kNavigation { get; set; } = new List<bil_acc_gl_detil>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_saldo_awal> bil_acc_saldo_awal { get; set; } = new List<bil_acc_saldo_awal>();
|
||||||
|
|
||||||
|
public virtual bil_acc_sub_kel? bil_acc_sub_kel_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_trx_in> bil_acc_trx_in { get; set; } = new List<bil_acc_trx_in>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_trx_lain> bil_acc_trx_lain { get; set; } = new List<bil_acc_trx_lain>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_trx_out> bil_acc_trx_out { get; set; } = new List<bil_acc_trx_out>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_employee> bil_employee { get; set; } = new List<bil_employee>();
|
||||||
|
|
||||||
|
public virtual bil_login? bil_login_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_template_neraca> bil_template_neraca { get; set; } = new List<bil_template_neraca>();
|
||||||
|
}
|
||||||
15
Models/simrs/bil_acc_coa_gol.cs
Normal file
15
Models/simrs/bil_acc_coa_gol.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_coa_gol
|
||||||
|
{
|
||||||
|
public string bil_acc_coa_gol_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_acc_coa_gol_kd_acc { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_gol_nama { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_coa_kelompok> bil_acc_coa_kelompok { get; set; } = new List<bil_acc_coa_kelompok>();
|
||||||
|
}
|
||||||
19
Models/simrs/bil_acc_coa_kelompok.cs
Normal file
19
Models/simrs/bil_acc_coa_kelompok.cs
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_coa_kelompok
|
||||||
|
{
|
||||||
|
public string bil_acc_coa_kelompok_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_acc_coa_gol_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kelompok_kd_acc { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kelompok_nama { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa_gol? bil_acc_coa_gol_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_sub_kel> bil_acc_sub_kel { get; set; } = new List<bil_acc_sub_kel>();
|
||||||
|
}
|
||||||
17
Models/simrs/bil_acc_gl.cs
Normal file
17
Models/simrs/bil_acc_gl.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_gl
|
||||||
|
{
|
||||||
|
public string bil_acc_gl_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_acc_gl_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_gl_update { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_gl_detil> bil_acc_gl_detil { get; set; } = new List<bil_acc_gl_detil>();
|
||||||
|
}
|
||||||
49
Models/simrs/bil_acc_gl_detil.cs
Normal file
49
Models/simrs/bil_acc_gl_detil.cs
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_gl_detil
|
||||||
|
{
|
||||||
|
public decimal bil_acc_gl_detil_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_d { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_k { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_gl_detil_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_acc_gl_detil_d_nominal { get; set; }
|
||||||
|
|
||||||
|
public double? bil_acc_gl_detil_k_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_no_trx { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_gl_detil_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_no_reg_layan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_nm_trx { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_uniqkey { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_d_nama { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_gl_detil_k_nama { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_coa_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_gl_detil_dNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_gl_detil_kNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_gl? bil_acc_gl_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
21
Models/simrs/bil_acc_laba_th_berjalan.cs
Normal file
21
Models/simrs/bil_acc_laba_th_berjalan.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_laba_th_berjalan
|
||||||
|
{
|
||||||
|
public long bil_acc_laba_th_berjalan_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_laba_th_berjalan_tgl { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_laba_th_berjalan_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_laba_th_berjalan_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_laba_th_berjalan_tgl_update { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_laba_th_berjalan_user { get; set; }
|
||||||
|
|
||||||
|
public double? bil_acc_laba_th_berjalan_nominal { get; set; }
|
||||||
|
}
|
||||||
23
Models/simrs/bil_acc_saldo_awal.cs
Normal file
23
Models/simrs/bil_acc_saldo_awal.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_saldo_awal
|
||||||
|
{
|
||||||
|
public int bil_acc_saldo_awal_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_saldo_awal_tgl { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_saldo_awal_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_saldo_awal_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_saldo_awal_user { get; set; }
|
||||||
|
|
||||||
|
public double? bil_acc_saldo_awal_nominal { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_coa_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
19
Models/simrs/bil_acc_sub_kel.cs
Normal file
19
Models/simrs/bil_acc_sub_kel.cs
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_sub_kel
|
||||||
|
{
|
||||||
|
public string bil_acc_sub_kel_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kelompok_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_sub_kel_acc_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_sub_kel_nama { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_acc_coa> bil_acc_coa { get; set; } = new List<bil_acc_coa>();
|
||||||
|
|
||||||
|
public virtual bil_acc_coa_kelompok? bil_acc_coa_kelompok_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
35
Models/simrs/bil_acc_trx_in.cs
Normal file
35
Models/simrs/bil_acc_trx_in.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_trx_in
|
||||||
|
{
|
||||||
|
public string bil_acc_trx_in_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_login_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_trx_in_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_in_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_acc_trx_in_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_in_keterangan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_in_reff { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_in_coa_d { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_in_coa_k { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_in_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_in_posting { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_coa_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_login? bil_login_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
37
Models/simrs/bil_acc_trx_lain.cs
Normal file
37
Models/simrs/bil_acc_trx_lain.cs
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_trx_lain
|
||||||
|
{
|
||||||
|
public string bil_acc_trx_lain_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_login_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_trx_lain_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_lain_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_acc_trx_lain_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_lain_keterangan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_lain_reff { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_trx_lain_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_lain_coa_d { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_lain_coa_k { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_lain_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_lain_posting { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_coa_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_login? bil_login_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
37
Models/simrs/bil_acc_trx_out.cs
Normal file
37
Models/simrs/bil_acc_trx_out.cs
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_acc_trx_out
|
||||||
|
{
|
||||||
|
public string bil_acc_trx_out_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_login_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_acc_trx_out_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_acc_trx_out_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_keterangan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_reff { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_coa_d { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_coa_k { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_posting { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_trx_out_posting_id { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_coa_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_login? bil_login_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
27
Models/simrs/bil_addon_adm.cs
Normal file
27
Models/simrs/bil_addon_adm.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_addon_adm
|
||||||
|
{
|
||||||
|
public decimal bil_addon_adm_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_addon_adm_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_addon_adm_flag { get; set; }
|
||||||
|
|
||||||
|
public int? bil_jenis_addon_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_tarif_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_addon_adm_user { get; set; }
|
||||||
|
|
||||||
|
public int? bil_tarif_adm_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_jenis_addon? bil_jenis_addon_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_tarif_adm? bil_tarif_adm_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_tarif? bil_tarif_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
23
Models/simrs/bil_ahli.cs
Normal file
23
Models/simrs/bil_ahli.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_ahli
|
||||||
|
{
|
||||||
|
public string bil_ahli_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_ahli_nm { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_ahli_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_ahli_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_ahli_lokalis { get; set; }
|
||||||
|
|
||||||
|
public int? bil_ahli_kuota { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_dokter> bil_dokter { get; set; } = new List<bil_dokter>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_sub_unit> bil_sub_unit { get; set; } = new List<bil_sub_unit>();
|
||||||
|
}
|
||||||
29
Models/simrs/bil_antri_lab_ri.cs
Normal file
29
Models/simrs/bil_antri_lab_ri.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_antri_lab_ri
|
||||||
|
{
|
||||||
|
public string bil_antri_lab_ri_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antri_lab_ri_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_antri_lab_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_antri_lab_ri_user { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antri_lab_ri_tgl_selesai { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antri_lab_ri_tgl_a_sample { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antri_lab_ri_tgl_sls_sample { get; set; }
|
||||||
|
|
||||||
|
public string? bil_antri_lab_ri_petugas { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_ri_trx_lab> bil_ri_trx_lab { get; set; } = new List<bil_ri_trx_lab>();
|
||||||
|
}
|
||||||
33
Models/simrs/bil_antrian_lab.cs
Normal file
33
Models/simrs/bil_antrian_lab.cs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_antrian_lab
|
||||||
|
{
|
||||||
|
public string bil_antrian_lab_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrian_lab_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_antrian_lab_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_antrian_lab_user { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrian_lab_tgl_selesai { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrian_lab_tgl_a_sampel { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrian_lab_tgl_sls_sample { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lab_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_antrian_lab_petugas { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_billing_lab_rj? bil_billing_lab_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rj_trx_lab> bil_rj_trx_lab { get; set; } = new List<bil_rj_trx_lab>();
|
||||||
|
}
|
||||||
27
Models/simrs/bil_antrol_robot.cs
Normal file
27
Models/simrs/bil_antrol_robot.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_antrol_robot
|
||||||
|
{
|
||||||
|
public string bil_antrol_robot_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_antrol_robot_sts_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_task_id_1 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_task_id_2 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_task_id_3 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_task_id_4 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_task_id_5 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_task_id_6 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_task_id_7 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_antrol_robot_execute_time { get; set; }
|
||||||
|
}
|
||||||
29
Models/simrs/bil_aol_resep.cs
Normal file
29
Models/simrs/bil_aol_resep.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_aol_resep
|
||||||
|
{
|
||||||
|
public string bil_aol_resep_id { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_aol_resep_tgl { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_aol_resep_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_aol_resep_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_aol_resep_noapotik { get; set; }
|
||||||
|
|
||||||
|
public string? bil_aol_resep_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_aol_no_resep { get; set; }
|
||||||
|
|
||||||
|
public string? bil_aol_resep_sep_kunjungan { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_rj> bil_rincian_farmasi_rj { get; set; } = new List<bil_rincian_farmasi_rj>();
|
||||||
|
}
|
||||||
25
Models/simrs/bil_api_auth.cs
Normal file
25
Models/simrs/bil_api_auth.cs
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_api_auth
|
||||||
|
{
|
||||||
|
public string bil_api_auth_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_api_auth_uname { get; set; }
|
||||||
|
|
||||||
|
public string? bil_api_auth_pass { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_api_auth_login_date { get; set; }
|
||||||
|
|
||||||
|
public string? bil_api_auth_ip { get; set; }
|
||||||
|
|
||||||
|
public string? bil_api_auth_token { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_api_auth_token_start { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_api_auth_token_end { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_api_auth_hist> bil_api_auth_hist { get; set; } = new List<bil_api_auth_hist>();
|
||||||
|
}
|
||||||
23
Models/simrs/bil_api_auth_hist.cs
Normal file
23
Models/simrs/bil_api_auth_hist.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_api_auth_hist
|
||||||
|
{
|
||||||
|
public int bil_api_auth_hist_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_api_auth_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_api_auth_hist_login_date { get; set; }
|
||||||
|
|
||||||
|
public string? bil_api_auth_hist_ip { get; set; }
|
||||||
|
|
||||||
|
public string? bil_api_auth_hist_token { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_api_auth_hist_token_start { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_api_auth_hist_token_end { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_api_auth? bil_api_auth_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
33
Models/simrs/bil_approval_sep.cs
Normal file
33
Models/simrs/bil_approval_sep.cs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_approval_sep
|
||||||
|
{
|
||||||
|
public string bil_approval_sep_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_bil_biodata_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pasien_rm { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_approval_sep_tgl_pengajuan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_approval_sep_jns_layanan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_approval_sep_jns_pengajuan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_approval_sep_keterangan { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_approval_sep_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_approval_sep_tgl_sep { get; set; }
|
||||||
|
|
||||||
|
public string? bil_approval_sep_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_approval_sep_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_approval_sep_response { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pasien? bil_pasien { get; set; }
|
||||||
|
}
|
||||||
31
Models/simrs/bil_asuransi.cs
Normal file
31
Models/simrs/bil_asuransi.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_asuransi
|
||||||
|
{
|
||||||
|
public string bil_asuransi_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_asuransi_nm { get; set; }
|
||||||
|
|
||||||
|
public string? bil_asuransi_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_asuransi_prefix { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_margin_harga> bil_farmasi_margin_harga { get; set; } = new List<bil_farmasi_margin_harga>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_ri_harga> bil_farmasi_ri_harga { get; set; } = new List<bil_farmasi_ri_harga>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_st_harga> bil_farmasi_st_harga { get; set; } = new List<bil_farmasi_st_harga>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_pasien_assuransi> bil_pasien_assuransi { get; set; } = new List<bil_pasien_assuransi>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_tarif> bil_tarif { get; set; } = new List<bil_tarif>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_tarif_adm> bil_tarif_adm { get; set; } = new List<bil_tarif_adm>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_tarif_rad> bil_tarif_rad { get; set; } = new List<bil_tarif_rad>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_tarif_sewa_alat> bil_tarif_sewa_alat { get; set; } = new List<bil_tarif_sewa_alat>();
|
||||||
|
}
|
||||||
21
Models/simrs/bil_auth.cs
Normal file
21
Models/simrs/bil_auth.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_auth
|
||||||
|
{
|
||||||
|
public string bil_auth__kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_employee_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_auth__flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_auth__tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_auth_pass { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_auth_request> bil_auth_request { get; set; } = new List<bil_auth_request>();
|
||||||
|
|
||||||
|
public virtual bil_employee? bil_employee_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
21
Models/simrs/bil_auth_request.cs
Normal file
21
Models/simrs/bil_auth_request.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_auth_request
|
||||||
|
{
|
||||||
|
public int bil_auth_request_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_auth__kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_auth_request_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_auth_request_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_auth_request_detil_req { get; set; }
|
||||||
|
|
||||||
|
public string? bil_auth_request_result { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_auth? bil_auth__kdNavigation { get; set; }
|
||||||
|
}
|
||||||
21
Models/simrs/bil_berkas_klaim_ri.cs
Normal file
21
Models/simrs/bil_berkas_klaim_ri.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_berkas_klaim_ri
|
||||||
|
{
|
||||||
|
public decimal bil_berkas_klaim_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_berkas_klaim_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_berkas_klaim_ri_tgl { get; set; }
|
||||||
|
|
||||||
|
public byte[]? bil_berkas_klaim_ri_path { get; set; }
|
||||||
|
|
||||||
|
public string? bil_berkas_klaim_ri_jenis_doc { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
21
Models/simrs/bil_berkas_klaim_rj.cs
Normal file
21
Models/simrs/bil_berkas_klaim_rj.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_berkas_klaim_rj
|
||||||
|
{
|
||||||
|
public decimal bil_berkas_klaim_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_berkas_klaim_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_berkas_klaim_rj_tgl { get; set; }
|
||||||
|
|
||||||
|
public byte[]? bil_berkas_klaim_rj_path { get; set; }
|
||||||
|
|
||||||
|
public string? bil_berkas_klaim_rj_jenis_doc { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
27
Models/simrs/bil_billing_adm_rj.cs
Normal file
27
Models/simrs/bil_billing_adm_rj.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_adm_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_adm_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_adm_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_adm_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_adm_rj_nominal { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_adm_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_adm_rj_diskon_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_adm_rj_user { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_adm_rj> bil_rincian_adm_rj { get; set; } = new List<bil_rincian_adm_rj>();
|
||||||
|
}
|
||||||
27
Models/simrs/bil_billing_ambulance_rj.cs
Normal file
27
Models/simrs/bil_billing_ambulance_rj.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_ambulance_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_ambulance_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_ambulance_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ambulance_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ambulance_rj_user { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ambulance_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ambulance_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_ambulance_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_rj_ambulance> bil_rincian_rj_ambulance { get; set; } = new List<bil_rincian_rj_ambulance>();
|
||||||
|
}
|
||||||
15
Models/simrs/bil_billing_cara_bayar.cs
Normal file
15
Models/simrs/bil_billing_cara_bayar.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_cara_bayar
|
||||||
|
{
|
||||||
|
public string bil_billing_cara_bayar_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_billing_cara_bayar_nama { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_cara_bayar_flag { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_billing_ri> bil_billing_ri { get; set; } = new List<bil_billing_ri>();
|
||||||
|
}
|
||||||
37
Models/simrs/bil_billing_farmasi_rj.cs
Normal file
37
Models/simrs/bil_billing_farmasi_rj.cs
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_farmasi_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_farmasi_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_farmasi_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_farmasi_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_farmasi_rj_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_farmasi_rj_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_farmasi_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_farmasi_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_farmasi_rj_status { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_farmasi_rj_ket { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_farmasi_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_farmasi_rj_diskon_nominal { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_farmasi_rj_pembulatan { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_rj> bil_rincian_farmasi_rj { get; set; } = new List<bil_rincian_farmasi_rj>();
|
||||||
|
}
|
||||||
35
Models/simrs/bil_billing_lab_rj.cs
Normal file
35
Models/simrs/bil_billing_lab_rj.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_lab_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_lab_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_lab_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lab_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lab_rj_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lab_rj_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_lab_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public int? bil_billing_lab_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lab_rj_status { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lab_rj_ket { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_lab_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_antrian_lab> bil_antrian_lab { get; set; } = new List<bil_antrian_lab>();
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rj_trx_lab> bil_rj_trx_lab { get; set; } = new List<bil_rj_trx_lab>();
|
||||||
|
}
|
||||||
27
Models/simrs/bil_billing_lain_rj.cs
Normal file
27
Models/simrs/bil_billing_lain_rj.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_lain_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_lain_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_lain_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lain_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_lain_rj_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_lain_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_lain_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_lain_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_rj_lain> bil_rincian_rj_lain { get; set; } = new List<bil_rincian_rj_lain>();
|
||||||
|
}
|
||||||
27
Models/simrs/bil_billing_rad_rj.cs
Normal file
27
Models/simrs/bil_billing_rad_rj.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_rad_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_rad_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_rad_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_rad_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_rad_rj_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_rad_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_rad_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_rad_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_rad> bil_rincian_rad { get; set; } = new List<bil_rincian_rad>();
|
||||||
|
}
|
||||||
51
Models/simrs/bil_billing_ri.cs
Normal file
51
Models/simrs/bil_billing_ri.cs
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_ri
|
||||||
|
{
|
||||||
|
public string bil_billing_ri_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_ri_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_diskon { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_status { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_keterangan { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_ri_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_diskon_nominal { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_biaya { get; set; }
|
||||||
|
|
||||||
|
public string? bil_kasir_faktur_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_cara_bayar_kd { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_cash { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_cashless { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_billing_cara_bayar? bil_billing_cara_bayar_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_billing_ri_cashles> bil_billing_ri_cashles { get; set; } = new List<bil_billing_ri_cashles>();
|
||||||
|
|
||||||
|
public virtual bil_kasir_faktur_ri? bil_kasir_faktur_ri_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_fee_ri> bil_rincian_fee_ri { get; set; } = new List<bil_rincian_fee_ri>();
|
||||||
|
}
|
||||||
29
Models/simrs/bil_billing_ri_bebas.cs
Normal file
29
Models/simrs/bil_billing_ri_bebas.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_ri_bebas
|
||||||
|
{
|
||||||
|
public string bil_billing_ri_bebas_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_bebas_ket { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_bebas_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_bebas_kd_reff { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_bebas_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_bebas_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_ri_bebas_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_ri_bebas_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<rincian_ri_bebas> rincian_ri_bebas { get; set; } = new List<rincian_ri_bebas>();
|
||||||
|
}
|
||||||
23
Models/simrs/bil_billing_ri_cashles.cs
Normal file
23
Models/simrs/bil_billing_ri_cashles.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_ri_cashles
|
||||||
|
{
|
||||||
|
public int bil_billing_ri_cashless_id { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_nama_bank { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_rek_tujuan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_no_kartu { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_ri_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_billing_ri? bil_billing_ri_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
41
Models/simrs/bil_billing_rj.cs
Normal file
41
Models/simrs/bil_billing_rj.cs
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_rj_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_rj_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_rj_status { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_rj_keterangan { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_rj_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_rj_diskon_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_kasir_faktur_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_kasir_faktur_rj? bil_kasir_faktur_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_fee> bil_rincian_fee { get; set; } = new List<bil_rincian_fee>();
|
||||||
|
}
|
||||||
25
Models/simrs/bil_billing_sewa_alat_ri.cs
Normal file
25
Models/simrs/bil_billing_sewa_alat_ri.cs
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_sewa_alat_ri
|
||||||
|
{
|
||||||
|
public string bil_billing_sewa_alat_ri_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_sewa_alat_ri_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_sewa_alat_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_billing_sewa_alat_ri_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_billing_sewa_alat_ri_diskon { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_billing_sewa_alat_ri_diskon_nominal { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_sewa_alat_ri_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
27
Models/simrs/bil_billing_sewa_rj.cs
Normal file
27
Models/simrs/bil_billing_sewa_rj.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_sewa_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_sewa_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_sewa_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_sewa_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_sewa_rj_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_sewa_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_sewa_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_sewa_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_sewa_rj> bil_rincian_sewa_rj { get; set; } = new List<bil_rincian_sewa_rj>();
|
||||||
|
}
|
||||||
31
Models/simrs/bil_billing_tind_ri.cs
Normal file
31
Models/simrs/bil_billing_tind_ri.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_tind_ri
|
||||||
|
{
|
||||||
|
public string bil_billing_tind_ri_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_tind_ri_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_ri_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_ri_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_tind_ri_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public int? bil_billing_tind_ri_diskon { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_ri_status { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_ri_ket { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_tind_ri_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
33
Models/simrs/bil_billing_tind_rj.cs
Normal file
33
Models/simrs/bil_billing_tind_rj.cs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_billing_tind_rj
|
||||||
|
{
|
||||||
|
public string bil_billing_tind_rj_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_tind_rj_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_rj_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_rj_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_rj_user_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_billing_tind_rj_total_biaya { get; set; }
|
||||||
|
|
||||||
|
public int? bil_billing_tind_rj_diskon { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_rj_status { get; set; }
|
||||||
|
|
||||||
|
public string? bil_billing_tind_rj_ket { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_billing_tind_rj_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_tind_rj> bil_rincian_tind_rj { get; set; } = new List<bil_rincian_tind_rj>();
|
||||||
|
}
|
||||||
65
Models/simrs/bil_biodata.cs
Normal file
65
Models/simrs/bil_biodata.cs
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_biodata
|
||||||
|
{
|
||||||
|
public string bil_biodata_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_biodata_id_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_jns_id { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_nama { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_tmp_lahir { get; set; }
|
||||||
|
|
||||||
|
public DateOnly? bil_biodata_tgl_lahir { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_alamat { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_alamat_rt { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_alamat_rw { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_agama { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_suku { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_pekerjaan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_no_tlp { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_nm_ibu { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_biodata_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_kelamin { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_stskawin { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_pendidikan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_kewarganegaraan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_alamat_kelurahan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_alamat_kecamatan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_gol_darah { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_alamat_kota { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_alamat_provinsi { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_dokter> bil_dokter { get; set; } = new List<bil_dokter>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_employee> bil_employee { get; set; } = new List<bil_employee>();
|
||||||
|
|
||||||
|
public virtual bil_pasien? bil_pasienbil_bil_biodata_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_pasien> bil_pasienbil_biodata_kdNavigation { get; set; } = new List<bil_pasien>();
|
||||||
|
}
|
||||||
15
Models/simrs/bil_bpjs_naik_kelas.cs
Normal file
15
Models/simrs/bil_bpjs_naik_kelas.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_bpjs_naik_kelas
|
||||||
|
{
|
||||||
|
public string bil_bpjs_naik_kelas_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_bpjs_naik_kelas_nm { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_naik_kelas_map { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_kelas_rawat? bil_bpjs_naik_kelas_mapNavigation { get; set; }
|
||||||
|
}
|
||||||
37
Models/simrs/bil_bpjs_rujukan.cs
Normal file
37
Models/simrs/bil_bpjs_rujukan.cs
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_bpjs_rujukan
|
||||||
|
{
|
||||||
|
public string bil_bpjs_rujukan_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_bil_biodata_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pasien_rm { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_no_rujukan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_asal_rujukan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_diagnosa { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_poli_tujuan { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_rujukan_tgl_rujukan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_tujuan_rujukan { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_rujukan_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_rujukan_tgl_update { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_rujukan_no_reg { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pasien? bil_pasien { get; set; }
|
||||||
|
}
|
||||||
41
Models/simrs/bil_bpjs_spri.cs
Normal file
41
Models/simrs/bil_bpjs_spri.cs
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_bpjs_spri
|
||||||
|
{
|
||||||
|
public string bil_bpjs_spri_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_bil_biodata_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pasien_rm { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_noka { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_spri_tgl_surat { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_spri_tgl_rencana { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_nama_dokter { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_spri_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_kd_daftar { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_poli_kontrol { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_nosep { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_kddokter { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_no_spri_bpjs { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_spri_raw_data { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pasien? bil_pasien { get; set; }
|
||||||
|
}
|
||||||
45
Models/simrs/bil_bpjs_srt_kontrol.cs
Normal file
45
Models/simrs/bil_bpjs_srt_kontrol.cs
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_bpjs_srt_kontrol
|
||||||
|
{
|
||||||
|
public string bil_bpjs_srt_kontrol_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_bil_biodata_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pasien_rm { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_srt_kontrol_tgl_surat { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_srt_kontrol_tgl_rencana { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_nama_dokter { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_bpjs_srt_kontrol_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_no_reg { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_poli_asal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_poli_kontrol { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_nosep { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_kd_dokter { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_no_kontrol_bpjs { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontron_rujukan_asal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_out_from { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bpjs_srt_kontrol_raw_data { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pasien? bil_pasien { get; set; }
|
||||||
|
}
|
||||||
13
Models/simrs/bil_bridging.cs
Normal file
13
Models/simrs/bil_bridging.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_bridging
|
||||||
|
{
|
||||||
|
public int bil_bridging_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_bridging_nm { get; set; }
|
||||||
|
|
||||||
|
public bool? bil_bridging_status { get; set; }
|
||||||
|
}
|
||||||
23
Models/simrs/bil_cookie.cs
Normal file
23
Models/simrs/bil_cookie.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_cookie
|
||||||
|
{
|
||||||
|
public string bil_cookie_id { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_cookie_value { get; set; }
|
||||||
|
|
||||||
|
public string? bil_login_id { get; set; }
|
||||||
|
|
||||||
|
public string? bil_cookie_state { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_cookie_time { get; set; }
|
||||||
|
|
||||||
|
public string? bil_cookie_conn_id { get; set; }
|
||||||
|
|
||||||
|
public string? bil_cookie_user_agent { get; set; }
|
||||||
|
|
||||||
|
public bool? bil_cookie_connected { get; set; }
|
||||||
|
}
|
||||||
17
Models/simrs/bil_department.cs
Normal file
17
Models/simrs/bil_department.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_department
|
||||||
|
{
|
||||||
|
public string bil_department_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_department_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_department_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_department_nm { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_unit> bil_unit { get; set; } = new List<bil_unit>();
|
||||||
|
}
|
||||||
43
Models/simrs/bil_detil_po_gudang.cs
Normal file
43
Models/simrs/bil_detil_po_gudang.cs
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_detil_po_gudang
|
||||||
|
{
|
||||||
|
public int bil_detil_po_gudang_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_faramsi_mst_brg_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_gudang_po_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_po_gudang_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_po_gudang_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_po_gudang_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_po_gudang_qty { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_po_gudang_hna { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_po_gudang_diskon { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_po_gudang_ppn { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_po_gudang_qty_terima { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_po_gudang_user_terima { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_po_gudang_tgl_terima { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_po_gudang_total_harga { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_po_gudang_tgl_exp_date { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_po_gudang_sts_exp { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_brg? bil_faramsi_mst_brg_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_gudang_po? bil_gudang_po_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
27
Models/simrs/bil_detil_report_rko.cs
Normal file
27
Models/simrs/bil_detil_report_rko.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_detil_report_rko
|
||||||
|
{
|
||||||
|
public string bil_detil_report_rko_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_detil_report_rko_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_report_rko_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_report_rko_sisa_stok { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_report_rko_prediksi_pengadaan { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_report_rko_avg_pemakaian { get; set; }
|
||||||
|
|
||||||
|
public int? bil_temp_rko_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_report_rko_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_report_rko? bil_report_rko_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_temp_rko? bil_temp_rko_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
29
Models/simrs/bil_detil_retur.cs
Normal file
29
Models/simrs/bil_detil_retur.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_detil_retur
|
||||||
|
{
|
||||||
|
public int bil_detil_retur_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_brg_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_farmasi_retur_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_retur_tgl { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_retur_qty { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_retur_qty_terima { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_retur_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_retur_stok_reff { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_retur_stok_hpp { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_brg? bil_farmasi_mst_brg_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_retur? bil_farmasi_retur_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
21
Models/simrs/bil_detil_rko_temp.cs
Normal file
21
Models/simrs/bil_detil_rko_temp.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_detil_rko_temp
|
||||||
|
{
|
||||||
|
public string bil_detil_rko_temp_id { get; set; } = null!;
|
||||||
|
|
||||||
|
public bool? bil_detil_rko_temp_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_rko_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_brg_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_temp_rko_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_brg? bil_farmasi_mst_brg_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_temp_rko? bil_temp_rko_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
35
Models/simrs/bil_detil_stok_gudang.cs
Normal file
35
Models/simrs/bil_detil_stok_gudang.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_detil_stok_gudang
|
||||||
|
{
|
||||||
|
public int bil_detil_stok_gudang_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_stok_gudang_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_stok_gudang_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_stok_gudang_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_stok_gudang_batch { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_stok_gudang_exp_date { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_stok_gudang_hna { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_stok_gudang_tgl_masuk { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_stok_gudang_tgl_keluar { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_stok_gudang_reff { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_stok_gudang_qty { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_stok_gudang_user { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_gudang_transfer> bil_gudang_transfer { get; set; } = new List<bil_gudang_transfer>();
|
||||||
|
|
||||||
|
public virtual bil_stok_gudang? bil_stok_gudang_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
25
Models/simrs/bil_detil_tarif_adm.cs
Normal file
25
Models/simrs/bil_detil_tarif_adm.cs
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_detil_tarif_adm
|
||||||
|
{
|
||||||
|
public string bil_detil_tarif_adm_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public int? bil_tarif_adm_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_tarif_adm_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_tarif_adm_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_tarif_adm_nama { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_tarif_adm_nominal { get; set; }
|
||||||
|
|
||||||
|
public double? bil_detil_tarif_adm_fee_dokter { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_adm_rj> bil_rincian_adm_rj { get; set; } = new List<bil_rincian_adm_rj>();
|
||||||
|
|
||||||
|
public virtual bil_tarif_adm? bil_tarif_adm_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
31
Models/simrs/bil_detil_template_doc.cs
Normal file
31
Models/simrs/bil_detil_template_doc.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_detil_template_doc
|
||||||
|
{
|
||||||
|
public int bil_detil_template_doc_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_template_doc_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_detil_template_doc_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_template_doc_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_template_doc_value { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_template_doc_item { get; set; }
|
||||||
|
|
||||||
|
public int? bil_detil_template_doc_b { get; set; }
|
||||||
|
|
||||||
|
public int? bil_detil_template_doc_l { get; set; }
|
||||||
|
|
||||||
|
public int? bil_detil_template_doc_w { get; set; }
|
||||||
|
|
||||||
|
public int? bil_detil_template_doc_font_size { get; set; }
|
||||||
|
|
||||||
|
public string? bil_detil_template_doc_align { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_template_doc? bil_template_doc_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
41
Models/simrs/bil_dokter.cs
Normal file
41
Models/simrs/bil_dokter.cs
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_dokter
|
||||||
|
{
|
||||||
|
public string bil_ahli_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string bil_dokter_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_biodata_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dokter_nm { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dokter_sip { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_dokter_sip_masa { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_dokter_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dokter_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dokter_bpjs_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dokter_ihs_number { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_ahli bil_ahli_kdNavigation { get; set; } = null!;
|
||||||
|
|
||||||
|
public virtual bil_biodata? bil_biodata_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_employee? bil_employee_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_jadwal_dokter> bil_jadwal_dokter { get; set; } = new List<bil_jadwal_dokter>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_pendaftaran_ri> bil_pendaftaran_ri { get; set; } = new List<bil_pendaftaran_ri>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_pendaftaran_rj> bil_pendaftaran_rj { get; set; } = new List<bil_pendaftaran_rj>();
|
||||||
|
}
|
||||||
39
Models/simrs/bil_dummy_inacbg.cs
Normal file
39
Models/simrs/bil_dummy_inacbg.cs
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_dummy_inacbg
|
||||||
|
{
|
||||||
|
public int bil_dummy_inacbg_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dummy_inacbg_icd10 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dummy_inacbg_icd9 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dummy_inacbg_nosep { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dummy_inacbg_cbg_code { get; set; }
|
||||||
|
|
||||||
|
public double? bil_dummy_inacbg_cbg_tarif { get; set; }
|
||||||
|
|
||||||
|
public double? bil_dummy_inacbg_tarif_alt_1 { get; set; }
|
||||||
|
|
||||||
|
public double? bil_dummy_inacbg_tarif_alt_2 { get; set; }
|
||||||
|
|
||||||
|
public double? bil_dummy_inacbg_tarif_alt_3 { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_dummy_inacbg_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dummy_inacbg_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_dummy_inacbg_tgl_masuk { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_dummy_inacbg_tgl_keluar { get; set; }
|
||||||
|
|
||||||
|
public string? bil_dummy_inacbg_discharge_sts { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
25
Models/simrs/bil_eklaim.cs
Normal file
25
Models/simrs/bil_eklaim.cs
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_eklaim
|
||||||
|
{
|
||||||
|
public decimal bil_eklaim_id { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_eklaim_tgl_kirim { get; set; }
|
||||||
|
|
||||||
|
public string? bil_eklaim_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_eklaim_status { get; set; }
|
||||||
|
|
||||||
|
public string? bil_eklaim_user { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_eklaim_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_eklaim_sep { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
29
Models/simrs/bil_emp_hist_dept.cs
Normal file
29
Models/simrs/bil_emp_hist_dept.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_emp_hist_dept
|
||||||
|
{
|
||||||
|
public string bil_emp_hist_dept_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_employee_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_emp_hist_dept_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_emp_hist_dept_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_emp_hist_dept_nm { get; set; }
|
||||||
|
|
||||||
|
public string? bil_emp_hist_dept_unit { get; set; }
|
||||||
|
|
||||||
|
public string? bil_emp_hist_dept_sub_unit { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_emp_hist_dept_tgl_mulai { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_emp_hist_dept_tgl_selesai { get; set; }
|
||||||
|
|
||||||
|
public string? bil_emp_hist_dept_jabatan { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_employee? bil_employee_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
13
Models/simrs/bil_emp_sts.cs
Normal file
13
Models/simrs/bil_emp_sts.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_emp_sts
|
||||||
|
{
|
||||||
|
public int bil_emp_sts_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_emp_sts_nm { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_employee> bil_employee { get; set; } = new List<bil_employee>();
|
||||||
|
}
|
||||||
81
Models/simrs/bil_employee.cs
Normal file
81
Models/simrs/bil_employee.cs
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_employee
|
||||||
|
{
|
||||||
|
public string bil_employee_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_sub_unit_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_biodata_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_employee_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_employee_tgl_masuk { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_employee_tgl_keluar { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_employee_tgl_update { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_profesi { get; set; }
|
||||||
|
|
||||||
|
public int? bil_emp_sts_kd { get; set; }
|
||||||
|
|
||||||
|
public string? hrd_profesi_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_nip_baru { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_nip_lama { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_foto_path { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_npwp { get; set; }
|
||||||
|
|
||||||
|
public string? bil_employee_bpjstk { get; set; }
|
||||||
|
|
||||||
|
public string? bil_acc_coa_kd { get; set; }
|
||||||
|
|
||||||
|
public string? hrd_emp_sts_aktif_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_acc_coa? bil_acc_coa_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_auth> bil_auth { get; set; } = new List<bil_auth>();
|
||||||
|
|
||||||
|
public virtual bil_biodata? bil_biodata_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_dokter> bil_dokter { get; set; } = new List<bil_dokter>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_emp_hist_dept> bil_emp_hist_dept { get; set; } = new List<bil_emp_hist_dept>();
|
||||||
|
|
||||||
|
public virtual bil_emp_sts? bil_emp_sts_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_login> bil_login { get; set; } = new List<bil_login>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_pejabat> bil_pejabat { get; set; } = new List<bil_pejabat>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_ppa_tind_rj> bil_ppa_tind_rj { get; set; } = new List<bil_ppa_tind_rj>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_fee> bil_rincian_fee { get; set; } = new List<bil_rincian_fee>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_fee_ri> bil_rincian_fee_ri { get; set; } = new List<bil_rincian_fee_ri>();
|
||||||
|
|
||||||
|
public virtual bil_sub_unit? bil_sub_unit_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<hrd_emp_doc> hrd_emp_doc { get; set; } = new List<hrd_emp_doc>();
|
||||||
|
|
||||||
|
public virtual ICollection<hrd_emp_komp_gaji> hrd_emp_komp_gaji { get; set; } = new List<hrd_emp_komp_gaji>();
|
||||||
|
|
||||||
|
public virtual ICollection<hrd_emp_sip> hrd_emp_sip { get; set; } = new List<hrd_emp_sip>();
|
||||||
|
|
||||||
|
public virtual ICollection<hrd_emp_sk> hrd_emp_sk { get; set; } = new List<hrd_emp_sk>();
|
||||||
|
|
||||||
|
public virtual ICollection<hrd_emp_str> hrd_emp_str { get; set; } = new List<hrd_emp_str>();
|
||||||
|
|
||||||
|
public virtual hrd_emp_sts_aktif? hrd_emp_sts_aktif_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual hrd_profesi? hrd_profesi_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
15
Models/simrs/bil_enum.cs
Normal file
15
Models/simrs/bil_enum.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_enum
|
||||||
|
{
|
||||||
|
public string bil_enum_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_enum_nama { get; set; }
|
||||||
|
|
||||||
|
public string? bil_enum_kdenum { get; set; }
|
||||||
|
|
||||||
|
public string? bil_enum_desc { get; set; }
|
||||||
|
}
|
||||||
11
Models/simrs/bil_enum_bpjs_flagprocedure.cs
Normal file
11
Models/simrs/bil_enum_bpjs_flagprocedure.cs
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_enum_bpjs_flagprocedure
|
||||||
|
{
|
||||||
|
public string bil_enum_bpjs_flagprocedure_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_enum_bpjs_tujuankunjungan_nama { get; set; }
|
||||||
|
}
|
||||||
11
Models/simrs/bil_enum_bpjs_tujuankunjungan.cs
Normal file
11
Models/simrs/bil_enum_bpjs_tujuankunjungan.cs
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_enum_bpjs_tujuankunjungan
|
||||||
|
{
|
||||||
|
public string bil_enum_bpjs_tujuankunjungan_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_enum_bpjs_tujuankunjungan_nama { get; set; }
|
||||||
|
}
|
||||||
31
Models/simrs/bil_faramsi_ri_kartu_stok.cs
Normal file
31
Models/simrs/bil_faramsi_ri_kartu_stok.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_faramsi_ri_kartu_stok
|
||||||
|
{
|
||||||
|
public int bil_faramsi_ri_kartu_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_faramsi_ri_kartu_stok_tgl { get; set; }
|
||||||
|
|
||||||
|
public double? bil_faramsi_ri_kartu_stok_qty_trx_out { get; set; }
|
||||||
|
|
||||||
|
public double? bil_faramsi_ri_kartu_stok_qty_trx_in { get; set; }
|
||||||
|
|
||||||
|
public double? bil_faramsi_ri_kartu_stok_qty_akhir { get; set; }
|
||||||
|
|
||||||
|
public string? bil_faramsi_ri_kartu_stok_ket { get; set; }
|
||||||
|
|
||||||
|
public string? bil_faramsi_ri_kartu_stok_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_faramsi_ri_kartu_stok_no_reff { get; set; }
|
||||||
|
|
||||||
|
public string? bil_faramsi_ri_kartu_stok_user { get; set; }
|
||||||
|
|
||||||
|
public double? bil_faramsi_ri_kartu_stok_qty_awal { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_ri_stok? bil_farmasi_ri_stok_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
33
Models/simrs/bil_farmasi_hist_st_harga.cs
Normal file
33
Models/simrs/bil_farmasi_hist_st_harga.cs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_hist_st_harga
|
||||||
|
{
|
||||||
|
public decimal bil_farmasi_hist_st_harga_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_st_harga_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_hist_st_harga_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_hist_st_harga_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_hist_st_harga_user { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_hist_st_harga_hpp { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_hist_st_harga_jual_rj { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_hist_st_harga_margin_rj { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_hist_st_harga_jual_ri { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_hist_st_harga_margin_ri { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_hist_st_harga_source { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_hist_st_harga_prev_date { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_st_harga? bil_farmasi_st_harga_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
23
Models/simrs/bil_farmasi_margin_harga.cs
Normal file
23
Models/simrs/bil_farmasi_margin_harga.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_margin_harga
|
||||||
|
{
|
||||||
|
public string bil_farmasi_margin_harga_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public double? bil_farmasi_margin_harga_ri_percent { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_margin_harga_rj_percent { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_golongan_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_asuransi_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_margin_harga_flag { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_asuransi? bil_asuransi_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_golongan? bil_farmasi_mst_golongan_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
53
Models/simrs/bil_farmasi_mst_brg.cs
Normal file
53
Models/simrs/bil_farmasi_mst_brg.cs
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_mst_brg
|
||||||
|
{
|
||||||
|
public string bil_faramsi_mst_brg_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_faramsi_mst_brg_nm_brg { get; set; }
|
||||||
|
|
||||||
|
public string? bil_faramsi_mst_brg_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_faramsi_mst_brg_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_faramsi_mst_brg_satuan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_brg_kfa_code { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_brg_dosage_form_kd { get; set; }
|
||||||
|
|
||||||
|
public byte[]? bil_farmasi_mst_brg_dosage_form_name { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_golongan_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_brg_kd_apt_online { get; set; }
|
||||||
|
|
||||||
|
public bool? bil_farmasi_mst_brg_aol_kronis { get; set; }
|
||||||
|
|
||||||
|
public bool? bil_farmasi_mst_brg_aol_prb { get; set; }
|
||||||
|
|
||||||
|
public bool? bil_farmasi_mst_brg_aol_kemo { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_detil_po_gudang> bil_detil_po_gudang { get; set; } = new List<bil_detil_po_gudang>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_detil_retur> bil_detil_retur { get; set; } = new List<bil_detil_retur>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_detil_rko_temp> bil_detil_rko_temp { get; set; } = new List<bil_detil_rko_temp>();
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_golongan? bil_farmasi_mst_golongan_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_ri_stok> bil_farmasi_ri_stok { get; set; } = new List<bil_farmasi_ri_stok>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_stok> bil_farmasi_stok { get; set; } = new List<bil_farmasi_stok>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_stok_unit> bil_farmasi_stok_unit { get; set; } = new List<bil_farmasi_stok_unit>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_gudang_permintaan_detil> bil_gudang_permintaan_detil { get; set; } = new List<bil_gudang_permintaan_detil>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_beli> bil_rincian_farmasi_beli { get; set; } = new List<bil_rincian_farmasi_beli>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_stok_gudang> bil_stok_gudang { get; set; } = new List<bil_stok_gudang>();
|
||||||
|
}
|
||||||
17
Models/simrs/bil_farmasi_mst_golongan.cs
Normal file
17
Models/simrs/bil_farmasi_mst_golongan.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_mst_golongan
|
||||||
|
{
|
||||||
|
public string bil_farmasi_mst_golongan_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_faramsi_mst_golongan_nm { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmas_mst_golongan_flag { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_margin_harga> bil_farmasi_margin_harga { get; set; } = new List<bil_farmasi_margin_harga>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_mst_brg> bil_farmasi_mst_brg { get; set; } = new List<bil_farmasi_mst_brg>();
|
||||||
|
}
|
||||||
23
Models/simrs/bil_farmasi_pembelian.cs
Normal file
23
Models/simrs/bil_farmasi_pembelian.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_pembelian
|
||||||
|
{
|
||||||
|
public string bil_farmasi_pembelian_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_pembelian_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_pembelian_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_pembelian_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_pembelian_no_invoice { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_pembelian_tgl_invoice { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_pembelian_total { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_beli> bil_rincian_farmasi_beli { get; set; } = new List<bil_rincian_farmasi_beli>();
|
||||||
|
}
|
||||||
33
Models/simrs/bil_farmasi_retur.cs
Normal file
33
Models/simrs/bil_farmasi_retur.cs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_retur
|
||||||
|
{
|
||||||
|
public int bil_farmasi_retur_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_retur_faktor_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_sub_unit_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_retur_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_retur_tgl_retur { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_retur_keterangan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_retur_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_retur_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_retur_tgl_terima { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_retur_user_terima { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_detil_retur> bil_detil_retur { get; set; } = new List<bil_detil_retur>();
|
||||||
|
|
||||||
|
public virtual bil_retur_faktor? bil_retur_faktor_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_sub_unit? bil_sub_unit_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
37
Models/simrs/bil_farmasi_ri_harga.cs
Normal file
37
Models/simrs/bil_farmasi_ri_harga.cs
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_ri_harga
|
||||||
|
{
|
||||||
|
public string bil_farmasi_ri_harga_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_harga_jual { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_harga_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_harga_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_harga_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_asuransi_kd { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_st_harga_hna { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_st_harga_ppn { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_st_harga_margin { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_asuransi? bil_asuransi_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_ri_stok? bil_farmasi_ri_stok_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_stok? bil_farmasi_stok_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_ri> bil_rincian_farmasi_ri { get; set; } = new List<bil_rincian_farmasi_ri>();
|
||||||
|
}
|
||||||
35
Models/simrs/bil_farmasi_ri_so_detil.cs
Normal file
35
Models/simrs/bil_farmasi_ri_so_detil.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_ri_so_detil
|
||||||
|
{
|
||||||
|
public int bil_farmasi_ri_so_detil_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_farmasi_ri_stok_detil_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_so_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_so_detil_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_so_detil_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_so_detil_qty { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_so_detil_hpp { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_so_detil_kd_stok { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_so_detil_batch { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_so_detil_qty_fisik { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_so_detil_qty_trx { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_so_detil_result { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_ri_stok_detil? bil_farmasi_ri_stok_detil_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_ri_stok_so? bil_farmasi_ri_stok_so_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
31
Models/simrs/bil_farmasi_ri_stok.cs
Normal file
31
Models/simrs/bil_farmasi_ri_stok.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_ri_stok
|
||||||
|
{
|
||||||
|
public string bil_farmasi_ri_stok_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_faramsi_mst_brg_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_stok_tgl { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_stok_tgl_update { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_stok_qty { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_stok_hpp { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_user { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_brg? bil_faramsi_mst_brg_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_faramsi_ri_kartu_stok> bil_faramsi_ri_kartu_stok { get; set; } = new List<bil_faramsi_ri_kartu_stok>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_ri_harga> bil_farmasi_ri_harga { get; set; } = new List<bil_farmasi_ri_harga>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_ri_stok_detil> bil_farmasi_ri_stok_detil { get; set; } = new List<bil_farmasi_ri_stok_detil>();
|
||||||
|
}
|
||||||
35
Models/simrs/bil_farmasi_ri_stok_detil.cs
Normal file
35
Models/simrs/bil_farmasi_ri_stok_detil.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_ri_stok_detil
|
||||||
|
{
|
||||||
|
public int bil_farmasi_ri_stok_detil_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_stok_detil_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_detil_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_detil_batch { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_stok_detil_exp_date { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_stok_detil_hna { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_stok_detil_tgl_masuk { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_stok_detil_tgl_keluar { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_detil_reff { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_ri_stok_detil_qty { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_detil_user { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_ri_so_detil> bil_farmasi_ri_so_detil { get; set; } = new List<bil_farmasi_ri_so_detil>();
|
||||||
|
|
||||||
|
public virtual bil_farmasi_ri_stok? bil_farmasi_ri_stok_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
15
Models/simrs/bil_farmasi_ri_stok_so.cs
Normal file
15
Models/simrs/bil_farmasi_ri_stok_so.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_ri_stok_so
|
||||||
|
{
|
||||||
|
public string bil_farmasi_ri_stok_so_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_ri_stok_so_tgl_so { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_ri_stok_so_flag { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_ri_so_detil> bil_farmasi_ri_so_detil { get; set; } = new List<bil_farmasi_ri_so_detil>();
|
||||||
|
}
|
||||||
31
Models/simrs/bil_farmasi_rj_bebas.cs
Normal file
31
Models/simrs/bil_farmasi_rj_bebas.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_rj_bebas
|
||||||
|
{
|
||||||
|
public string bil_farmasi_rj_bebas_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_bil_biodata_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pasien_rm { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_bebas_total { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_bebas_tgl_trx { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_bebas_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_bebas_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_bebas_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_bebas_ket { get; set; }
|
||||||
|
|
||||||
|
public bool? bil_farmasi_rj_bebas_stsbayar { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pasien? bil_pasien { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<rincian_farmasi_rj_bebas> rincian_farmasi_rj_bebas { get; set; } = new List<rincian_farmasi_rj_bebas>();
|
||||||
|
}
|
||||||
33
Models/simrs/bil_farmasi_rj_kartu_stok.cs
Normal file
33
Models/simrs/bil_farmasi_rj_kartu_stok.cs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_rj_kartu_stok
|
||||||
|
{
|
||||||
|
public int bil_farmasi_rj_kartu_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_kartu_stok_tgl { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_kartu_stok_qty_trx_out { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_kartu_stok_qty_trx_in { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_kartu_stok_qty_trx_akhir { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_kartu_stok_ket { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_kartu_stok_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_kartu_stok_no_reff { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_kartu_stok_user { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_kartu_stok_qty_trx_awal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_kartu_stok_uniq_key { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_stok? bil_farmasi_stok_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
31
Models/simrs/bil_farmasi_rj_racikan.cs
Normal file
31
Models/simrs/bil_farmasi_rj_racikan.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_rj_racikan
|
||||||
|
{
|
||||||
|
public string bil_farmasi_rj_racikan_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_racikan_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_racikan_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_racikan_nama { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_racikan_etiket { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_farmasi_rj_racikan_qty { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_racikan_catatan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_login_kd { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_login? bil_login_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_rj> bil_rincian_farmasi_rj { get; set; } = new List<bil_rincian_farmasi_rj>();
|
||||||
|
}
|
||||||
27
Models/simrs/bil_farmasi_rj_so.cs
Normal file
27
Models/simrs/bil_farmasi_rj_so.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_rj_so
|
||||||
|
{
|
||||||
|
public string bil_farmasi_rj_so_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_farmasi_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_so_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_so_tgl_so { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_farmasi_rj_so_qty_sys { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_farmasi_rj_so_qty_fisik { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_farmasi_rj_so_qty_selisih { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_farmasi_rj_so_qty_nominal { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_so_user_so { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_stok? bil_farmasi_stok_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
33
Models/simrs/bil_farmasi_rj_so_detil.cs
Normal file
33
Models/simrs/bil_farmasi_rj_so_detil.cs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_rj_so_detil
|
||||||
|
{
|
||||||
|
public int bil_farmasi_rj_so_detil_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_stok_so_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_so_detil_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_so_detil_flag { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_so_detil_qty { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_so_detil_hpp { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_so_detil_kd_stok { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_so_detil_batch { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_so_detil_qty_fisik { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_so_detil_qty_trx { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_so_detil_result { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_stok? bil_farmasi_rj_so_detil_kd_stokNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_rj_stok_so? bil_farmasi_rj_stok_so_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
35
Models/simrs/bil_farmasi_rj_stok_detil.cs
Normal file
35
Models/simrs/bil_farmasi_rj_stok_detil.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_rj_stok_detil
|
||||||
|
{
|
||||||
|
public int bil_farmasi_rj_stok_detil_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_stok_detil_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_stok_detil_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_stok_detil_batch { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_stok_detil_expired_date { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_stok_detil_hna { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_stok_detil_tgl_masuk { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_stok_detil_tgl_keluar { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_stok_detil_reff { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_rj_stok_detil_qty { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_stok_detil_user { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_stok_detil_tgl_restok { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_stok? bil_farmasi_stok_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
15
Models/simrs/bil_farmasi_rj_stok_so.cs
Normal file
15
Models/simrs/bil_farmasi_rj_stok_so.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_rj_stok_so
|
||||||
|
{
|
||||||
|
public string bil_farmasi_rj_stok_so_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_rj_stok_so_tgl_so { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_rj_stok_so_flag { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_rj_so_detil> bil_farmasi_rj_so_detil { get; set; } = new List<bil_farmasi_rj_so_detil>();
|
||||||
|
}
|
||||||
21
Models/simrs/bil_farmasi_simpan_kunci.cs
Normal file
21
Models/simrs/bil_farmasi_simpan_kunci.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_simpan_kunci
|
||||||
|
{
|
||||||
|
public string bil_farmasi_simpan_kunci_id { get; set; } = null!;
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_simpan_kunci_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_simpan_kunci_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_simpan_kunci_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_rj_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_simpan_kunci_flag_farmasi { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_rj? bil_pendaftaran_rj_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
39
Models/simrs/bil_farmasi_st_harga.cs
Normal file
39
Models/simrs/bil_farmasi_st_harga.cs
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_st_harga
|
||||||
|
{
|
||||||
|
public string bil_farmasi_st_harga_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_farmasi_stok_kd { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_st_harga_jual { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_st_harga_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_st_harga_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_st_harga_user { get; set; }
|
||||||
|
|
||||||
|
public string? bil_asuransi_kd { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_st_harga_hna { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_st_harga_ppn { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_st_harga_margin { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_asuransi? bil_asuransi_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_hist_st_harga> bil_farmasi_hist_st_harga { get; set; } = new List<bil_farmasi_hist_st_harga>();
|
||||||
|
|
||||||
|
public virtual bil_farmasi_stok? bil_farmasi_stok_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_ri> bil_rincian_farmasi_ri { get; set; } = new List<bil_rincian_farmasi_ri>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_rincian_farmasi_rj> bil_rincian_farmasi_rj { get; set; } = new List<bil_rincian_farmasi_rj>();
|
||||||
|
|
||||||
|
public virtual ICollection<rincian_farmasi_rj_bebas> rincian_farmasi_rj_bebas { get; set; } = new List<rincian_farmasi_rj_bebas>();
|
||||||
|
}
|
||||||
35
Models/simrs/bil_farmasi_stok.cs
Normal file
35
Models/simrs/bil_farmasi_stok.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_stok
|
||||||
|
{
|
||||||
|
public string bil_farmasi_stok_kd { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? bil_faramsi_mst_brg_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_stok_tgl { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_stok_tgl_update { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_stok_qty { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_stok_hpp { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_stok_flag { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_brg? bil_faramsi_mst_brg_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_ri_harga> bil_farmasi_ri_harga { get; set; } = new List<bil_farmasi_ri_harga>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_rj_kartu_stok> bil_farmasi_rj_kartu_stok { get; set; } = new List<bil_farmasi_rj_kartu_stok>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_rj_so> bil_farmasi_rj_so { get; set; } = new List<bil_farmasi_rj_so>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_rj_so_detil> bil_farmasi_rj_so_detil { get; set; } = new List<bil_farmasi_rj_so_detil>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_rj_stok_detil> bil_farmasi_rj_stok_detil { get; set; } = new List<bil_farmasi_rj_stok_detil>();
|
||||||
|
|
||||||
|
public virtual ICollection<bil_farmasi_st_harga> bil_farmasi_st_harga { get; set; } = new List<bil_farmasi_st_harga>();
|
||||||
|
}
|
||||||
29
Models/simrs/bil_farmasi_stok_unit.cs
Normal file
29
Models/simrs/bil_farmasi_stok_unit.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_farmasi_stok_unit
|
||||||
|
{
|
||||||
|
public int bil_farmasi_stok_unit_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_sub_unit_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_farmasi_mst_brg_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_stok_unit_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_stok_unit_tgl_stok { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_farmasi_stok_unit_tgl_update { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_stok_unit_qty { get; set; }
|
||||||
|
|
||||||
|
public double? bil_farmasi_stok_unit_hpp { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_farmasi_mst_brg? bil_farmasi_mst_brg_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<bil_stok_unit_so_detil> bil_stok_unit_so_detil { get; set; } = new List<bil_stok_unit_so_detil>();
|
||||||
|
|
||||||
|
public virtual bil_sub_unit? bil_sub_unit_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
29
Models/simrs/bil_foto_rad.cs
Normal file
29
Models/simrs/bil_foto_rad.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_foto_rad
|
||||||
|
{
|
||||||
|
public int bil_foto_rad_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_rj_rad_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_foto_rad_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_foto_rad_tgl_hasil { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_path { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_keterangan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_rj_rad_studies_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_series { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_rj_rad? bil_rj_rad_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_rj_rad_studies? bil_rj_rad_studies_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
29
Models/simrs/bil_foto_rad_ri.cs
Normal file
29
Models/simrs/bil_foto_rad_ri.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_foto_rad_ri
|
||||||
|
{
|
||||||
|
public long bil_foto_rad_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public int? bil_ri_rad_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_foto_rad_ri_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_foto_rad_ri_tgl_hasil { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_ri_path { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_ri_keterangan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_ri_rad_studies_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_foto_rad_ri_series { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_ri_rad? bil_ri_rad_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_ri_rad_studies? bil_ri_rad_studies_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
67
Models/simrs/bil_general_consent_ri.cs
Normal file
67
Models/simrs/bil_general_consent_ri.cs
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_general_consent_ri
|
||||||
|
{
|
||||||
|
public decimal bil_general_consent_ri_id { get; set; }
|
||||||
|
|
||||||
|
public string? bil_pendaftaran_ri_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_general_consent_ri_tgl_input { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_flag { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_nm_p_jawab { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_hubungan { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_alamat { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_p_jawab_jk { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_file_path { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_no_telp { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kel1 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kel2 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kel3 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kuasa1 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kuasa2 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kuasa3 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kuasa4 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_tlk_kunj1 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_tlk_kunj2 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_tlk_kunj3 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_tlk_kunj4 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_ttp_brg1 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_ttp_brg2 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_ttp_brg3 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_ttp_brg4 { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_petugas { get; set; }
|
||||||
|
|
||||||
|
public byte[]? bil_general_consent_ri_ttd_petugas { get; set; }
|
||||||
|
|
||||||
|
public byte[]? bil_general_consent_ri_ttd_pjawab { get; set; }
|
||||||
|
|
||||||
|
public string? bil_general_consent_ri_priv_kel4 { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_pendaftaran_ri? bil_pendaftaran_ri_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
29
Models/simrs/bil_gudang_exp_det.cs
Normal file
29
Models/simrs/bil_gudang_exp_det.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace simrs.Models.simrs;
|
||||||
|
|
||||||
|
public partial class bil_gudang_exp_det
|
||||||
|
{
|
||||||
|
public int bil_gudang_exp_det_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_stok_gudang_kd { get; set; }
|
||||||
|
|
||||||
|
public string? bil_gudang_lap_kadaluarsa_kd { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_gudang_exp_det_tgl { get; set; }
|
||||||
|
|
||||||
|
public string? bil_gudang_exp_det_flag { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_gudang_exp_det_qty { get; set; }
|
||||||
|
|
||||||
|
public decimal? bil_gudang_exp_det_harga { get; set; }
|
||||||
|
|
||||||
|
public string? bil_gudang_exp_det_kondisi { get; set; }
|
||||||
|
|
||||||
|
public DateTime? bil_gudang_exp_det_tgl_exp { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_gudang_lap_kadaluarsa? bil_gudang_lap_kadaluarsa_kdNavigation { get; set; }
|
||||||
|
|
||||||
|
public virtual bil_stok_gudang? bil_stok_gudang_kdNavigation { get; set; }
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user