001/* 002 * =========================================================================================== 003 * = COPYRIGHT 004 * PAX Computer Technology (Shenzhen) Co., Ltd. PROPRIETARY INFORMATION 005 * This software is supplied under the terms of a license agreement or nondisclosure 006 * agreement with PAX Computer Technology (Shenzhen) Co., Ltd. and may not be copied or 007 * disclosed except in accordance with the terms in that agreement. 008 * Copyright (C) 2017-2023 PAX Computer Technology (Shenzhen) Co., Ltd. All rights reserved. 009 * Description: // Detail description about the function of this module, 010 * // interfaces with the other modules, and dependencies. 011 * Revision History: 012 * Date Author Action 013 * 2017/04/01 PAX Create/Add/Modify/Delete 014 * =========================================================================================== 015 */ 016package com.pax.dal.entity; 017 018/** 019 * <div class="zh">顾客显示屏信息。</div> 020 * <div class="en">Customer display screen information.</div> 021 * @since V3.25.00 022 */ 023public class CustomerDisplayInfo { 024 025 private final int width; 026 private final int height; 027 private final int bit; 028 029 public CustomerDisplayInfo(int width, int height, int bit) { 030 this.width = width; 031 this.height = height; 032 this.bit = bit; 033 } 034 035 /** 036 * <div class="zh"> 获取宽度。单位: 像素。</div> <div class="en"> Gets the width. Unit: pixel.</div> 037 * 038 * @return <div class="zh"> 宽度。单位: 像素。</div> <div class="en"> Width. Unit: pixel.</div> 039 */ 040 public int getWidth() { 041 return width; 042 } 043 044 045 /** 046 * <div class="zh"> 获取高度。单位: 像素。 </div> <div class="en"> Gets the height. Unit: pixel.</div> 047 * 048 * @return <div class="zh"> 高度。单位: 像素。</div> <div class="en">Width. Unit: pixel.</div> 049 */ 050 public int getHeight() { 051 return height; 052 } 053 054 /** 055 * <div class="zh"> 获取位深。单位:像素。</div> <div class="en"> Get bit depth. Unit: pixel. </div> 056 * 057 * @return <div class="zh"> 宽度。单位: 像素。</div> <div class="en"> Bit depth. Unit: pixel.</div> 058 */ 059 public int getBit() { 060 return bit; 061 } 062 063}