mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-22 02:29:36 +08:00
27 lines
455 B
Java
27 lines
455 B
Java
package com.ics.admin.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 房间合同关联表 ics_customer_contract_room
|
|
*
|
|
* @author zzm
|
|
* @date 2021-03-30
|
|
*/
|
|
@Data
|
|
@TableName("ics_customer_contract_room")
|
|
public class CustomerContractRoom implements Serializable {
|
|
|
|
|
|
/** 关联合同id */
|
|
private Long contractId;
|
|
|
|
/** 关联房间id */
|
|
private Long roomId;
|
|
|
|
|
|
}
|